summaryrefslogtreecommitdiff
path: root/Examples/php/sync/runme.php
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/php/sync/runme.php')
-rw-r--r--Examples/php/sync/runme.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/Examples/php/sync/runme.php b/Examples/php/sync/runme.php
new file mode 100644
index 000000000..a7c43474f
--- /dev/null
+++ b/Examples/php/sync/runme.php
@@ -0,0 +1,15 @@
+<?
+
+// Load module and PHP classes.
+include("example.php");
+
+echo "Got new object\n";
+echo "Got string $s and value $x \n";
+
+$s = new Sync();
+echo "Got new object\n";
+
+$s->printer();
+
+?>
+