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至
相關文章
相關標籤/搜索