コード例 #1
0
ファイル: functions.php プロジェクト: phpf/http
 /**
  * Returns a HTTP status header description.
  *
  * @param int $code		HTTP status code.
  * @return string		Status description string, or empty string if invalid.
  */
 function http_response_code_desc($code)
 {
     return Util::getStatusCodeText($code, '');
 }