D:\wwwroot\tianmengerun\wwwroot\Data\Framework\Common\functions.php LINE: 112
錯(cuò)誤位置
100 return $output; 101 } 102 103 /** 104 * 404處理 105 * 調(diào)試模式會拋異常 106 * 部署模式下面?zhèn)魅雞rl參數(shù)可以指定跳轉(zhuǎn)頁面,否則發(fā)送404信息 107 * @param string $msg 提示信息 108 * @param string $url 跳轉(zhuǎn)URL地址 109 * @return void 110 */ 111 function _404($msg='',$url='') { 112 APP_DEBUG && throw_exception($msg); 113 if($msg && C('LOG_EXCEPTION_RECORD')) Log::write($msg); 114 if(empty($url) && C('URL_404_REDIRECT')) { 115 $url = C('URL_404_REDIRECT'); 116 } 117 if($url) { 118 redirect($url); 119 }else{ 120 send_http_status(404); 121 exit; 122 } 123 } 124