在PHP中可以使用header()函數傳回錯誤程式碼,也就是在頁面中加入404的頭訊息,其語法如「header("HTTP/1.0 404 Not Found");」。
本文操作環境: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中文網其他相關文章!