您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“php.ini中如何屏蔽所有錯(cuò)誤”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“php.ini中如何屏蔽所有錯(cuò)誤”這篇文章吧。
php.ini中屏蔽所有錯(cuò)誤的方法:1、打開“php.ini”配置文件,在其中搜索“display_errors”項(xiàng);2、將“display_errors”項(xiàng)的值設(shè)置為“Off”即可關(guān)閉所有的PHP錯(cuò)誤報(bào)告,進(jìn)而屏蔽所有錯(cuò)誤。
本教程操作環(huán)境:windows7系統(tǒng)、PHP7.1版,DELL G3電腦
php.ini中屏蔽所有錯(cuò)誤的方法:
打開 php.ini 配置文件,在其中搜索 display_errors,然后將 display_errors 的值設(shè)置為 Off 即可關(guān)閉所有的 PHP 錯(cuò)誤報(bào)告。如下所示:
; This directive controls whether or not and where PHP will output errors, ; notices and warnings too. Error output is very useful during development, but ; it could be very dangerous in production environments. Depending on the code ; which is triggering the error, sensitive information could potentially leak ; out of your application such as database usernames and passwords or worse. ; For production environments, we recommend logging errors rather than ; sending them to STDOUT. ; Possible Values: ; Off = Do not display any errors ; stderr = Display errors to STDERR (affects only CGI/CLI binaries!) ; On or stdout = Display errors to STDOUT ; Default Value: On ; Development Value: On ; Production Value: Off ; http://php.net/display-errors display_errors = Off
這種方法應(yīng)該是最徹底的一種解決辦法,因?yàn)樗鼊t是作用于所有的 PHP 文件。
擴(kuò)展知識(shí):屏蔽錯(cuò)誤的其他方法
使用錯(cuò)誤控制運(yùn)算符:@
PHP 支持使用錯(cuò)誤控制運(yùn)算符@。將其放置在一個(gè) PHP 表達(dá)式之前,該表達(dá)式可能產(chǎn)生的任何錯(cuò)誤信息都將被忽略掉。
如果用 set_error_handler() 設(shè)定了自定義的錯(cuò)誤處理函數(shù),這個(gè)錯(cuò)誤處理函數(shù)仍然會(huì)被調(diào)用,而如果在出錯(cuò)語(yǔ)句前使用了@的話,錯(cuò)誤處理函數(shù)將返回 0。
需要注意的是,@運(yùn)算符只對(duì)表達(dá)式有效。簡(jiǎn)單來(lái)說(shuō)就是,如果能從某處得到值,就能在它前面加上 @ 運(yùn)算符。例如可以在變量、函數(shù)、include 調(diào)用、常量等等之前使用 @ 運(yùn)算符,但不能把它放在函數(shù)或類的定義之前,也不能用于條件結(jié)構(gòu)例如 if 和 foreach 等語(yǔ)句前。
@運(yùn)算符對(duì)于可以導(dǎo)致程序終止的嚴(yán)重錯(cuò)誤也是有效的,這意味著如果在某個(gè)不存在或者敲錯(cuò)了字母的函數(shù)調(diào)用前用了@來(lái)抑制錯(cuò)誤信息,那么程序?qū)]有任何提示的死在那里。
【示例】使用 @ 錯(cuò)誤控制運(yùn)算符屏蔽代碼中的錯(cuò)誤。
<?php $link = @mysqli_connect("127.0.0.1", "my_user", "my_password", "my_db") or die('數(shù)據(jù)庫(kù)連接失敗!'); ?>
運(yùn)行結(jié)果如下:
數(shù)據(jù)庫(kù)連接失敗!
以上是“php.ini中如何屏蔽所有錯(cuò)誤”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。