1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/foo
Zeev Suraski aceaabceff PHP 4.0
1999-04-07 21:05:13 +00:00

10 lines
230 B
Plaintext

*** 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";
?>