剛剛解決了PHP Notice: Undefined index的錯誤,卻發現還存在“PHP Deprecated: Function set_magic_quotes_runtime() is deprecated in……”錯誤,估計是剛才修改了PHP.ini的問題。
錯誤提示為:PHP Deprecated: Function set_magic_quotes_runtime() is deprecated in X:\web\include\common.inc.php on line 8
在解決PHP Notice: Undefined index錯誤的時候,我將php.ini由之前的:
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
修改成了:
error_reporting = E_ALL & ~E_NOTICE
解決了PHP Notice: Undefined index的問題,但是又出了set_magic_quotes_runtime()的問題。導致這個提示的原因是在PHP5.3后此特性(set_magic_quotes_runtime())已經關閉,而我們也只需要稍微修改一下就行了,改成:
error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED
這樣就沒問題了。
