コード例 #1
0
 /**
  * handleSessionStartError() - interface for set_error_handler()
  *
  * @see    http://framework.zend.com/issues/browse/ZF-1325
  * @param  int    $errno
  * @param  string $errstr
  * @return void
  */
 public static function handleSessionStartError($errno, $errstr, $errfile, $errline, $errcontext)
 {
     self::$sessionStartError = $errfile . '(Line:' . $errline . '): Error #' . $errno . ' ' . $errstr . ' ' . $errcontext;
 }
コード例 #2
0
ファイル: Mongo.php プロジェクト: SandeepUmredkar/PortalSMIP
 /**
  * Read session data
  *
  * @param string $id
  */
 public function read($id)
 {
     // The mongo backend might produce some error if the servers are unavailable
     // for example.
     $oldStartError = Zend_Session_Exception::$sessionStartError;
     try {
         // Fetch the contents from mongo
         $session = $this->_collection->findOne(array('_id' => $id, 'metadata.expire' => array('$gt' => new MongoDate(time()))));
         if (!$session || !isset($session['data']) || !isset($session['metadata']) || !isset($session['metadata']['expire'])) {
             $session = '';
             unset($this->_sessionHashes[$id]);
         } else {
             $session = $session['data'];
             $this->_sessionHashes[$id] = md5($session);
         }
         // Restore the previous error (if any)
         Zend_Session_Exception::$sessionStartError = $oldStartError;
         return $session;
     } catch (\Exception $e) {
         \App::log()->crit($e);
     }
     return '';
 }
コード例 #3
0
ファイル: Exception.php プロジェクト: klando/pgpiwik
 /**
  * handleSessionStartError() - interface for set_error_handler()
  *
  * @see    http://framework.zend.com/issues/browse/ZF-1325
  * @param  int    $errno
  * @param  string $errstr
  * @return void
  */
 public static function handleSessionStartError($errno, $errstr)
 {
     self::$sessionStartError = $errstr;
 }
コード例 #4
0
ファイル: Cache.php プロジェクト: SandeepUmredkar/PortalSMIP
 /**
  * Read session data
  *
  * @param string $id
  */
 public function read($id)
 {
     // The cache backend might produce some error if the servers are unavailable
     // for example.
     $oldStartError = Zend_Session_Exception::$sessionStartError;
     // Fetch the contents from the cache
     $session = $this->_cache->load($this->_prefix . $id);
     if (!$session) {
         $session = '';
     }
     // Restore the previous error (if any)
     Zend_Session_Exception::$sessionStartError = $oldStartError;
     return $session;
 }