php開啟與關閉錯誤提示適用於沒有修改php.ini的許可權_php技巧

來源:互聯網
上載者:User

windows系統開關php錯誤提示

如果不具備修改php.ini的許可權,可以將如下代碼加入php檔案中:

代碼如下

ini_set("display_errors", "On");

error_reporting(E_ALL | E_STRICT);

當然,如果能夠修改php.ini的話,如下即可:

代碼如下

找到display_errors = On 修改為 display_errors = off

注意:如果你已經把PHP.ini檔案複製到windows目錄下,那麼必須同時把c:windows/php.ini裡的display_errors = On 修改為display_errors = off

PHP .ini中display_errors = Off失效的解決

在linux系統中開啟與關閉錯誤提示方法差不多,不過我還是具體給大家介紹一下

linux系統下

1. 開啟php.ini檔案。

以我的ubuntu為例,這個檔案在: /etc/php5/a(www.jb51.net)pache2 目錄下。

2. 搜尋並修改下行,把Off值改成On

代碼如下

display_errors = Off

3. 搜尋下行

代碼如下

error_reporting = E_ALL & ~E_NOTICE

或者搜尋:

error_reporting = E_ALL & ~E_DEPRECATED

修改為

error_reporting = E_ALL | E_STRICT

4. 修改Apache的 httpd.conf,

以我的 Ubuntu 為例, 這個檔案在:/etc/apache2/ 目錄下,這是一個空白檔案。

添加以下兩行:

代碼如下

php_flag display_errors on
php_value error_reporting 2039

5. 重啟Apache,就OK了。

重啟命令: :

代碼如下

sudo /etc/init.d/apache2 restart

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.