变量引用 案例:<?php//变量单独引用$test = "a string!";$quote = &$test; echo $test; //a string!echo $quote;//a string! $quote = "exchange!";echo $test; //exchange!echo $quote;//exchange! unset($quote);echo $test; //exchange! //函数传参引用$num = 10;echo $num."";test($num);ec ......
本文摘自 :https://www.cnblogs.com/


