您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
Mods-for-HESK-Netsyms/api/http_response_code.php

15 行
397 B
PHP

<?php
// For 4.3.0 <= PHP <= 5.4.0
if (function_exists('http_response_code') === false) {
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;
}
}