6
PHPスクリプトから500内部サーバーエラーエラーを送信する方法
特定の条件下で、PHPスクリプトから「500InternalServerError」を送信する必要があります。スクリプトは、サードパーティのアプリによって呼び出されることになっています。スクリプトには、通常のの代わりに応答コードdie("this happend")を送信する必要があるステートメントがいくつか含まれ500 Internal Server Errorてい200 OKます。サードパーティのスクリプトは、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. …
80
php
http-headers