<?php
function foo(&$var)
{ $var++;}$a=5;foo($a);// $a is 6 here

看明白了吗,函数里的变量用了引用,修改后,是直接对函数外的变量有效的。

更新细节参考官方链接:https://php.n[……]

阅读全文