diff options
Diffstat (limited to 'foo')
-rw-r--r-- | foo | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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"; +?> |