Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\htdocs\include\common.php on line 94
Deprecated: Function set_magic_quotes_runtime() is deprecated in C:\wamp\www\htdocs\include\common.php on line 21
How can we hide those messages ?
解決方法,可以利 php.ini 的配置修訂去處理掉那些惱人的錯誤訊息!
修改 error_reporting 的參數:
error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED
[原始]
error_reporting = E_ALL & ~E_NOTICE
[修訂一]
error_reporting = E_ALL & ~E_NOTICE
& ~E
_DEPRECATED
error_reporting = E_ALL & ~E_NOTICE | E_STRICT
我個人是使用修訂一的方式!
沒有留言:
張貼留言