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

1013

被折叠的 条评论
为什么被折叠?



