标题:
discuz6.0重要函数dheader
[打印本页]
作者:
fangzhen
时间:
2009-11-13 14:11
标题:
discuz6.0重要函数dheader
该函数利用header函数完成页面的跳转
function dheader($string, $replace = true, $http_response_code = 0) {
$string = str_replace(array("\r", "\n"), array('', ''), $string);
if(empty($http_response_code) || PHP_VERSION < '4.3' ) {
@header($string, $replace);
} else {
@header($string, $replace, $http_response_code);
}
if(preg_match('/^\s*location:/is', $string)) {
exit();
}
}
欢迎光临 PHP开发笔记 (http://phpvi.com/)
Powered by Discuz! 6.1.0