如何从PHP脚本发送500内部服务器错误错误

我需要在某些条件下从PHP脚本发送“500内部服务器错误”。 脚本应该由第三方应用程序调用。 该脚本包含一些我需要发送500 Internal Server Error响应代码而不是通常的200 OKdie("this happend")语句。 第三方脚本将在某些情况下重新发送请求,包括未收到200 OK响应代码。

问题的第二部分:我需要像这样设置我的脚本:

<?php
    custom_header( "500 Internal Server Error" );

    if ( that_happened ) {
        die( "that happened" )
    }

    if ( something_else_happened ) {
        die( "something else happened" )
    }

    update_database( );

    // the script can also fail on the above line
    // e.g. a mysql error occurred

    remove_header( "500" );
?>

只有在最后一行被执行后,我才需要发送200头。

编辑

一个侧面的问题:我可以发送奇怪的500头,例如:

HTTP/1.1 500 No Record Found
HTTP/1.1 500 Script Generated Error (E_RECORD_NOT_FOUND)
HTTP/1.1 500 Conditions Failed on Line 23

这样的错误是否会被网络服务器记录下来?


header($_SERVER['SERVER_PROTOCOL'] . ' 500 Internal Server Error', true, 500);

PHP 5.4有一个叫做http_response_code的函数,所以如果你使用PHP 5.4,你可以这样做:

http_response_code(500);

如果您正在运行5.4版以下的PHP版本,我已经为此函数编写了一个polyfill(Gist)。


要回答你的后续问题,HTTP 1.1 RFC说:

这里列出的短语只是建议 - 它们可能会被本地等价物取代而不影响协议。

这意味着你可以在代码本身之后使用任何你想要的文本(不包括回车符或换行符),它会起作用。 不过,通常情况下,通常会使用更好的响应代码。 例如,您可以发送一个404 (未找到),而不是使用500找不到记录,而对于“条件失败”(我猜测验证错误)等情况,您可以发送类似于422 (不可处理实体)。


您可以使用以下功能发送状态更改:

function header_status($statusCode) {
    static $status_codes = null;

    if ($status_codes === null) {
        $status_codes = array (
            100 => 'Continue',
            101 => 'Switching Protocols',
            102 => 'Processing',
            200 => 'OK',
            201 => 'Created',
            202 => 'Accepted',
            203 => 'Non-Authoritative Information',
            204 => 'No Content',
            205 => 'Reset Content',
            206 => 'Partial Content',
            207 => 'Multi-Status',
            300 => 'Multiple Choices',
            301 => 'Moved Permanently',
            302 => 'Found',
            303 => 'See Other',
            304 => 'Not Modified',
            305 => 'Use Proxy',
            307 => 'Temporary Redirect',
            400 => 'Bad Request',
            401 => 'Unauthorized',
            402 => 'Payment Required',
            403 => 'Forbidden',
            404 => 'Not Found',
            405 => 'Method Not Allowed',
            406 => 'Not Acceptable',
            407 => 'Proxy Authentication Required',
            408 => 'Request Timeout',
            409 => 'Conflict',
            410 => 'Gone',
            411 => 'Length Required',
            412 => 'Precondition Failed',
            413 => 'Request Entity Too Large',
            414 => 'Request-URI Too Long',
            415 => 'Unsupported Media Type',
            416 => 'Requested Range Not Satisfiable',
            417 => 'Expectation Failed',
            422 => 'Unprocessable Entity',
            423 => 'Locked',
            424 => 'Failed Dependency',
            426 => 'Upgrade Required',
            500 => 'Internal Server Error',
            501 => 'Not Implemented',
            502 => 'Bad Gateway',
            503 => 'Service Unavailable',
            504 => 'Gateway Timeout',
            505 => 'HTTP Version Not Supported',
            506 => 'Variant Also Negotiates',
            507 => 'Insufficient Storage',
            509 => 'Bandwidth Limit Exceeded',
            510 => 'Not Extended'
        );
    }

    if ($status_codes[$statusCode] !== null) {
        $status_string = $statusCode . ' ' . $status_codes[$statusCode];
        header($_SERVER['SERVER_PROTOCOL'] . ' ' . $status_string, true, $statusCode);
    }
}

你可以这样使用它:

<?php
header_status(500);

if (that_happened) {
    die("that happened")
}

if (something_else_happened) {
    die("something else happened")
}

update_database();

header_status(200);
链接地址: http://www.djcxy.com/p/57801.html

上一篇: How to send 500 Internal Server Error error from a PHP script

下一篇: Ruby, Mongodb, Anemone: web crawler with possible memory leak?