SessionHandlerInterface::open PHP Method

open() public method

public open ( $save_path, $name )
    public function open($save_path, $name);

Usage Example

Example #1
0
 /**
  * {@inheritdoc}
  */
 public function open($savePath, $sessionName)
 {
     $return = (bool) $this->handler->open($savePath, $sessionName);
     if (true === $return) {
         $this->active = true;
     }
     return $return;
 }
All Usage Examples Of SessionHandlerInterface::open