You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
230 B

28 years ago
  1. *** Testing assignments and variable aliasing: ***<br>
  2. <?php
  3. /* This test tests assignments to variables using other variables as variable-names */
  4. $a = "b";
  5. print "hey";
  6. $$a = "test";
  7. $$$a = "blah";
  8. print "hey";
  9. ?>