コード例 #1
0
ファイル: SessionHandler.php プロジェクト: alab1001101/zf2
 /**
  * Open the session store
  * 
  * @return bool
  */
 public function open()
 {
     // Make sure table exists
     $tableExists = $this->_tableStorage->tableExists($this->_sessionTable);
     if (!$tableExists) {
         $this->_tableStorage->createTable($this->_sessionTable);
     }
     // Ok!
     return true;
 }