发新话题
打印

discuz6.0重要函数dheader

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();
}
}

TOP

发新话题