查看完整版本: PHP 運行出現大量 Notice


plurk 2010-6-22 14:02

PHP 運行出現大量 Notice

Notice: Use of undefined constant ALL_PS - assumed 'ALL_PS' in E:\Server\vhosts\www.abc.com\global.php on line 50
<P>Notice: Undefined index: EaseTemplateVer in E:\Server\vhosts\abc.com\libs\template.core.php on line 51</P>
<P>&nbsp;</P>
<P>進入網站會出現大量類似下面的提示,但是可以正常顯示和運行...</P>
<P>&nbsp;</P>
<P>這些是PHP 的提示而非報錯,PHP 本身不需要事先聲明變量即可直接使用,但是對未聲明變量會有提示。</P>
<P>一般作為正式的網站會把提示關掉的,甚至連錯誤信息也被關掉   </P>
<P>&nbsp;</P>
<P>關閉 PHP 提示的方法   </P>
<P>搜索php.ini: </P>
<P>[quote]</P>
<P>error_reporting = E_ALL</P>
<P>改為</P>
<P>error_reporting = E_ALL <FONT color=red>&amp; ~E_NOTICE</FONT></P>
<P>[/quote]</P>
<P>&nbsp;</P>
<P>多加上 ~E_NOTICE 代表關閉Notice 的提示...php.ini 裡面還有其它參數...</P>
<P>有需要可以自行查看~~~</P>
頁: [1]
查看完整版本: PHP 運行出現大量 Notice