網(wǎng)站會(huì)出現(xiàn)大量類似下面的提示,但是可以正常顯示和運(yùn)行
Notice: Use of undefined constant ctbTitle - assumed ‘ctbTitle’ in d:\ctb1.5\ctb\include\config.php on line 23…?答案:這些是 PHP 的提示而非報(bào)錯(cuò),PHP 本身不需要事先聲明變量即可直接使用,但是對(duì)未聲明變量會(huì)有提示。一般作為正式的網(wǎng)站會(huì)把提示關(guān)掉的,甚至連錯(cuò)誤信息也被關(guān)掉 關(guān)閉 PHP 提示的方法 搜索php.ini:
error_reporting = E_ALL改為:
error_reporting = E_ALL & ~E_NOTICE重啟web服務(wù)器,設(shè)置即可生效。
發(fā)表評(píng)論