php怎麼回傳錯誤代碼

藏色散人
發布: 2023-03-12 12:44:02
原創
2506 人瀏覽過

在PHP中可以使用header()函數傳回錯誤程式碼,也就是在頁面中加入404的頭訊息,其語法如「header("HTTP/1.0 404 Not Found");」。

php怎麼回傳錯誤代碼

本文操作環境:windows7系統、PHP7.1版,DELL G3電腦

php怎麼回傳錯誤碼?

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

所以可以使用:

header("HTTP/1.0 404 Not Found");
登入後複製

或:

header("Status: 404 Not Found");
登入後複製

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

摘抄php手冊官網的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狀態的跳轉,所以它是不能給瀏覽器輸出404錯誤狀態的。

推薦學習:《PHP影片教學

以上是php怎麼回傳錯誤代碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
php
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!