如何更改网站的状态? - PHP
How can I change the status of the site? - PHP
我是新手,在PHP工作。
我的英文不是很好。如果您看到错别字,请进行编辑。
我需要一个改变网站状态的功能。喜欢下面的功能:
var_dump(http_response_code()); // return 200
function changeStatus($from, $to) {
// The code I need
}
changeStatus(200, 404);
var_dump(http_response_code()); // return 404
这种事可能吗?
请指导我
此代码将解决您的问题
function changeStatus($response_code) {
// The code I need
http_response_code($response_code);
}
changeStatus(404);
var_dump(http_response_code());
这是错误的,因为它 returns 之前的结果
var_dump(http_response_code(404)); // return 200
试试这个。这个答案比较安全
function changeStatus($responseCode)
{
if (http_response_code($responseCode))
return true;
else
return false;
}
changeStatus(404);
我是新手,在PHP工作。 我的英文不是很好。如果您看到错别字,请进行编辑。
我需要一个改变网站状态的功能。喜欢下面的功能:
var_dump(http_response_code()); // return 200
function changeStatus($from, $to) {
// The code I need
}
changeStatus(200, 404);
var_dump(http_response_code()); // return 404
这种事可能吗? 请指导我
此代码将解决您的问题
function changeStatus($response_code) {
// The code I need
http_response_code($response_code);
}
changeStatus(404);
var_dump(http_response_code());
这是错误的,因为它 returns 之前的结果
var_dump(http_response_code(404)); // return 200
试试这个。这个答案比较安全
function changeStatus($responseCode)
{
if (http_response_code($responseCode))
return true;
else
return false;
}
changeStatus(404);