运行以下代码,以下选项中输出正确的是()(选择一项)
结果
<?php $str='test1'; $one=$str; $two=&$one; $three=&$str; $str='now'; $two='once'; echo $str.' '; echo $one.' '; echo $two.' '; echo $three.' '; // now once once now ?>
运行以下代码,以下选项中输出正确的是()(选择一项)
结果
<?php $str='test1'; $one=$str; $two=&$one; $three=&$str; $str='now'; $two='once'; echo $str.' '; echo $one.' '; echo $two.' '; echo $three.' '; // now once once now ?>