function fun(&$arg){ $return=$arg; $arg+=1; return $return; } $a=3; var_dump(fun($a)-$a);
php7:运行结果 -1 求解为什么