Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Static Public Member Functions | Static Public Attributes
Zend_Session_Exception Class Reference
Inheritance diagram for Zend_Session_Exception:
Zend_Exception Zend_Session_SaveHandler_Exception Zend_Session_Validator_Exception

Static Public Member Functions

static handleSessionStartError ($errno, $errstr, $errfile, $errline, $errcontext)
 
static handleSilentWriteClose ($errno, $errstr, $errfile, $errline, $errcontext)
 

Static Public Attributes

static $sessionStartError = null
 

Additional Inherited Members

- Public Member Functions inherited from Zend_Exception
 __construct ($msg='', $code=0, Exception $previous=null)
 
 __call ($method, array $args)
 
 __toString ()
 
- Protected Member Functions inherited from Zend_Exception
 _getPrevious ()
 

Detailed Description

Definition at line 38 of file Exception.php.

Member Function Documentation

◆ handleSessionStartError()

static handleSessionStartError (   $errno,
  $errstr,
  $errfile,
  $errline,
  $errcontext 
)
static

handleSessionStartError() - interface for set_error_handler()

See also
http://framework.zend.com/issues/browse/ZF-1325
Parameters
int$errno
string$errstr
Returns
void

Definition at line 56 of file Exception.php.

57  {
58  self::$sessionStartError = $errfile . '(Line:' . $errline . '): Error #' . $errno . ' ' . $errstr;
59  }

◆ handleSilentWriteClose()

static handleSilentWriteClose (   $errno,
  $errstr,
  $errfile,
  $errline,
  $errcontext 
)
static

handleSilentWriteClose() - interface for set_error_handler()

See also
http://framework.zend.com/issues/browse/ZF-1325
Parameters
int$errno
string$errstr
Returns
void

Definition at line 69 of file Exception.php.

70  {
71  self::$sessionStartError .= PHP_EOL . $errfile . '(Line:' . $errline . '): Error #' . $errno . ' ' . $errstr;
72  }

Field Documentation

◆ $sessionStartError

$sessionStartError = null
static

Definition at line 46 of file Exception.php.


The documentation for this class was generated from the following file: