标签:Once 选择 color nbsp 面向 http img str 选项
运行以下代码,以下选项中输出正确的是()(选择一项)
结果
<?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 ?>
标签:Once 选择 color nbsp 面向 http img str 选项
原文地址:https://www.cnblogs.com/kay-learning/p/8948358.html