Example #1
0
 /**
  * setExpirationSeconds() - expire the namespace, or specific variables after a specified
  * number of seconds
  *
  * @param int $seconds     - expires in this many seconds
  * @param mixed $variables - OPTIONAL list of variables to expire (defaults to all)
  * @return void
  */
 public function setExpirationSeconds($seconds, $variables = null)
 {
     $this->_sessionCore->namespaceSetExpirationSeconds($this->_namespace, $seconds, $variables);
 }