mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
9 lines
230 B
Text
9 lines
230 B
Text
*** 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";
|
|
?>
|