要在PHP 中自訂HTTP 回應碼,請採用下列方法之一:
將header() 與自訂HTTP響應結合使用line:
header("HTTP/1.1 200 OK");
但是,以不同方式處理FastCGI PHP:
$sapi_type = php_sapi_name(); if (substr($sapi_type, 0, 3) == 'cgi') header("Status: 404 Not Found"); else header("HTTP/1.1 404 Not Found");
使用第三個參數輕鬆配置回應碼:
header(':', true, 404); header('X-PHP-Response-Code: 404', true, 404);
使用http_response_code() 簡化回應程式碼配置:
http_response_code(404);
針對PHP 5.4 以下的相容性:
if (!function_exists('http_response_code')) { function http_response_code($newcode = NULL) { static $code = 200; if($newcode !== NULL) { header('X-PHP-Response-Code: '.$newcode, true, $newcode); if(!headers_sent()) $code = $newcode; } return $code; } }
以上是如何在 PHP 中自訂 HTTP 回應代碼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!