summaryrefslogtreecommitdiff
path: root/foo
diff options
context:
space:
mode:
Diffstat (limited to 'foo')
-rw-r--r--foo9
1 files changed, 9 insertions, 0 deletions
diff --git a/foo b/foo
new file mode 100644
index 0000000000..46111e204b
--- /dev/null
+++ b/foo
@@ -0,0 +1,9 @@
+*** Testing assignments and variable aliasing: ***<br>
+<?php
+ /* This test tests assignments to variables using other variables as variable-names */
+ $a = "b";
+ print "hey";
+ $$a = "test";
+ $$$a = "blah";
+ print "hey";
+?>