1.错误(2016.08.19)
Fatal error:Call-time pass-by-reference has been removed
PHP在升级到5.5时,程序执行过程中会出现以上错误讯息,即新版本已经不允许在函数调用时,采用引用的方式,如
getFormMethod(&$method)
这样的参数传递方式已经不被允许,可以在函数定义时写
function getFormMethod(&$method){}
2.错误(2016.10.02)
:session_start(): Cannot send session cache limiter - headers already sent
session_start() 要求之前没有任何输出给客户端浏览器
因为在前面为了查看某些变量的值使用了var_dump和echo
网友评论