五種方法教你如何關閉php錯誤回顯資訊

來源:互聯網
上載者:User
有幾種方法可以屏蔽錯誤回顯資訊:

1.php.ini的display_errors在php.ini檔案中找到display_errors設定項,如果前面有分號,需要刪去分號,並將值改為off

2.php.ini的error_reporting這個是修改錯誤層級顯示,如果將層級設為最高等級的,則什麼錯誤都不會顯示在php.ini中找到error_reporting,去掉前面的分號(如果有),並將值改為0

3.使用ini_set函數配置此方法同方法1、2,只是在代碼裡面寫,在無法修改php.ini的時候使用string ini_set ( string $varname , string $newvalue )ini_set('display_errors', '0');ini_set('error_reporting','0');

4.使用error_reporting函數int error_reporting ([ int $level ] )error_reporting(0);//關閉所有錯誤報表

5.使用@屏蔽單條語句的錯誤回顯在需要屏蔽錯誤回顯的語句前添加@符號

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.