Ejemplo n.º 1
0
 /** 
  * 页面及错误(Exception)
  * 
  * @param Exception $ex 
  * @param mixed $message
  *
  */
 public static function request_error(Exception $ex = null, $message = null)
 {
     $code = 'error';
     if (!is_null($ex)) {
         $message = $ex->getMessage();
         if (false !== stripos($message, 'Unable to find a route to match the URI') || false !== stripos($message, 'not found on this server')) {
             $code = 404;
         }
         // Log the error
         //    if( $GLOBALS['__mogujie']['log_errors'] ){
         //      Kohana::$log->add(Kohana_Log::ERROR, var_export($ex,true) );
         //  }
     }
     if (empty($message)) {
         $message = 'unkown error';
     }
     View::bind_global('message', $message);
     View::bind_global('exception', $ex);
     $msg = $message . '-' . $ex;
     View::bind_global('msg', $msg);
     $uri = request_uri();
     crond_log("uri:{$uri}; code:{$code}; msg:{$msg}; referer:{$_SERVER['HTTP_REFERER']}", 'request_error.log');
     switch ($code) {
         case 404:
             //header("Status: 404 Not Found"); //header("HTTP/1.0 404 Not Found");
             echo Request::factory("error/404")->execute();
             break;
         default:
             echo Request::factory("error/index")->execute();
             break;
     }
     exit;
 }
Ejemplo n.º 2
0
function sqlstat_log($statement, $time = 0, $action = '', $dsn = '')
{
    $time *= 1000;
    $statement = str_replace("\n", '', $statement);
    $msg = '[[[' . $dsn . ']]]' . $action . '{{{' . $statement . '}}} <<<' . @$_SERVER['REQUEST_URI'] . '>>>(((' . $time . ')))';
    $LOG_FILE = 'sqlstat.log';
    crond_log($msg, $LOG_FILE);
}
Ejemplo n.º 3
0
 /**
  * 自减操作 +1 || @gzuncompress=0
  * @return the value of key after the decrement
  */
 public function decr($key, $expiration = null)
 {
     try {
         global $Zcache_Redis_lifetime, $Zcache_Redis_key;
         $Zcache_Redis_lifetime = $this->getLifetime($expiration);
         $Zcache_Redis_key = $key;
         $res = $this->_redis->pipeline(function ($pipe) {
             global $Zcache_Redis_lifetime, $Zcache_Redis_key;
             $pipe->decr($Zcache_Redis_key);
             $pipe->expire($Zcache_Redis_key, $Zcache_Redis_lifetime);
         });
         unset($Zcache_Redis_lifetime);
         unset($Zcache_Redis_key);
         return intval($res[0]);
     } catch (Exception $e) {
         crond_log("decr[{$key}]: " . $e->getMessage(), "redis.log");
         return false;
     }
 }