Fatal error:Call-time pass-by-reference has been removed_php引用传值
PHP在升级到5.5时,程序执行过程中出现如下错误讯息:
1 Fatal error:Call-time pass-by-reference has been removed
即新版本已经不允许在函数调用时,采用引用的方式,如 getFormMethod(&$method),
这样的参数传递方式已经不被允许,可以在函数定义时写
1 function getFormMethod(&$method) 2 { 3 $method = 'getValue'; 4 }
调用时
1 getFormMethod($method);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~