This adapter provides basic support for write, read and delete session handling, as well as allowing these three methods to be filtered as per the Lithium filtering system.
Inheritance: extends lithium\core\Object
Beispiel #1
0
 public function testIsStartedNoInit()
 {
     $this->_destroySession(session_name());
     $Php = new Php(array('init' => false));
     $result = $Php->isStarted();
     $this->assertFalse($result);
     $Php = new Php();
     $Php->read();
     $result = $Php->isStarted();
     $this->assertTrue($result);
 }