PHP:unset操做对&变量的影响

题目 $a="hello"; $b= &$a; unset($b); $b="world"; echo $a; $a="hello"; $b= &$a; unset($b); $b="world"; echo $a; 的结果是什么?( )php hello world NULL unset 答案是1git 解析: 能够把“变量”当作一个容器,“变量名”至关于这个容器的标签github unset至
相关文章
相关标签/搜索