特定の条件下でPHPスクリプトから「500 Internal Server Error」を送信する必要があります。スクリプトは、サードパーティのアプリによって呼び出されることになっています。スクリプトには、通常の500 Internal Server Error
の代わりに200 OK
応答コードを送信する必要があるdie("this happend")
ステートメントがいくつか含まれています。サードパーティのスクリプトは、200 OK
応答コードを受信しないことを含む特定の条件下で要求を再送信します。
質問の2番目の部分:スクリプトを次のようにセットアップする必要があります。
<?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
そのようなエラーはWebサーバーによってログに記録されますか?
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のバージョンを実行している場合、 この関数のポリフィル (要点)を書きました。
フォローアップの質問に答えるために、HTTP 1.1 RFCは次のように述べています。
ここにリストされている理由フレーズは推奨事項にすぎません。プロトコルに影響を与えることなく、ローカルの同等のものに置き換えることができます。
つまり、コード自体の後に任意のテキスト(キャリッジリターンまたはラインフィードを除く)を使用でき、機能します。ただし、一般的には、通常、使用する応答コードの方が優れています。たとえば、レコードが見つからない場合に500を使用する代わりに、404(見つかりません)、および「条件が失敗しました」などの場合(検証エラーを推測しています)、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);
あなたはちょうど置くことができます:
header("HTTP/1.0 500 Internal Server Error");
次のような条件内:
if (that happened) {
header("HTTP/1.0 500 Internal Server Error");
}
データベースクエリについては、次のようにできます。
$result = mysql_query("..query string..") or header("HTTP/1.0 500 Internal Server Error");
このコードをhtmlタグ(または出力)の前に置く必要があることを覚えておく必要があります。
次のように簡略化できます。
if ( that_happened || something_else_happened )
{
header('X-Error-Message: Incorrect username or password', true, 500);
die;
}
次のヘッダーが返されます。
HTTP/1.1 500 Internal Server Error
...
X-Error-Message: Incorrect username or password
...
追加:何が間違っていたのかを正確に知る必要がある場合は、次のようにします。
if ( that_happened )
{
header('X-Error-Message: Incorrect username', true, 500);
die('Incorrect username');
}
if ( something_else_happened )
{
header('X-Error-Message: Incorrect password', true, 500);
die('Incorrect password');
}
コードは次のようになります。
<?php
if ( that_happened ) {
header("HTTP/1.0 500 Internal Server Error");
die();
}
if ( something_else_happened ) {
header("HTTP/1.0 500 Internal Server Error");
die();
}
// Your function should return FALSE if something goes wrong
if ( !update_database() ) {
header("HTTP/1.0 500 Internal Server Error");
die();
}
// the script can also fail on the above line
// e.g. a mysql error occurred
header('HTTP/1.1 200 OK');
?>
何かがうまくいかない場合、実行を停止すると仮定します。