Strict Standards: Only variables should be passed by reference in D:\IT\wamp\apache\htdocs\Libraries\APP\Controller\Error.php on line 6

Warning: Creating default object from empty value in D:\IT\wamp\apache\htdocs\Libraries\APP\Controller\Error.php on line 8
log($exception, $request, $response, 'UserError'); } /** * 处理用户异常 * * 下面的代码处理由程序员编写的应用程序抛出异常后却没有被成功捕获 * * @param $exception 当前异常 * @param $request 发生异常时的request请求 * @param $response 发生异常时尚未发出的response * */ public function UserError($exception, $request, $response) { if(MDS_DEV == '1'){ AlaException::displayError($exception); } // $this->log($exception, $request, $response, 'UserError'); } private function log($exception, $request , $response, $prefix='errorLog'){ $logDir = BASE_PATH . '/Resources/Logs/'; $logName = $prefix. '-'. date("Y-m-d", time()). '.php'; $logFile = $logDir . $logName ; static $SEPERATOR = "---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n"; $logDir = BASE_PATH . '/Resources/Logs/'; $logName = $prefix. '-'. date("Y-m-d", time()). '.php'; $logFile = $logDir . $logName ; $content = $SEPERATOR; $content .= date('Y-m-d H:i:s', time()) . "\n"; $content .= $SEPERATOR; $content .= $exception."\n"; ob_start(); echo $SEPERATOR; //print_r($exception); print_r($request); //print_r($response); $content .= ob_get_contents(); ob_end_clean(); $content .= "\n\n"; APP_File::write($logFile, $content, 'a'); } }
Warning: require(ErrorHandler.php): failed to open stream: No such file or directory in D:\IT\wamp\apache\htdocs\Libraries\APP\Loader.php on line 31

Fatal error: require(): Failed opening required 'ErrorHandler.php' (include_path='.;D:\IT\wamp\apache\htdocs\www.yeecaredyf.com/../Libraries;D:\IT\wamp\apache\htdocs\www.yeecaredyf.com/../Libraries/Smarty;D:\IT\wamp\apache\htdocs\www.yeecaredyf.com/../Libraries/APP;D:\IT\wamp\apache\htdocs\www.yeecaredyf.com/../Libraries/php-ofc-library;D:\IT\wamp\apache\htdocs\www.yeecaredyf.com/Application/Model;.;C:\php\pear') in D:\IT\wamp\apache\htdocs\Libraries\APP\Loader.php on line 31