溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

php怎么讓代碼出錯時返回錯誤代碼

發(fā)布時間:2021-09-13 19:07:47 來源:億速云 閱讀:118 作者:chen 欄目:編程語言

本篇內(nèi)容介紹了“php怎么讓代碼出錯時返回錯誤代碼”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!

本文操作環(huán)境:windows7系統(tǒng)、PHP7.1版,DELL G3電腦

php怎么返回錯誤代碼?

php中用header()函數(shù)是可以為返回頁面添加404的頭信息的,從而提示瀏覽器該網(wǎng)頁找不到了。

所以可以使用:

header("HTTP/1.0 404 Not Found");

或者:

header("Status: 404 Not Found");

后者是在FastCGI模式下使用的,在php代碼中可以把兩句直接同時寫上。

摘抄php手冊官網(wǎng)的header使用說明如下:

The header string.There are two special-case header calls. The first is a header that starts with the string "HTTP/" (case is not significant), which will be used to figure out the HTTP status code to send. For example, if you have configured Apache to use a PHP script to handle requests for missing files (using the ErrorDocument directive), you may want to make sure that your script generates the proper status code.For FastCGI you must use the following for a 404 response:

而header("Location: xxx.com");默認是做302狀態(tài)的跳轉(zhuǎn),所以它是不能給瀏覽器輸出404錯誤狀態(tài)的。

“php怎么讓代碼出錯時返回錯誤代碼”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI