mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
10 lines
230 B
Plaintext
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";
|
|
?>
|