Example #1
0
 public function __construct($store = 'none', $options = array())
 {
     //get the correct storage, and register it.
     $this->_store = SomeSessionStorage::getInstance($store, $options);
     session_name('wo' . md5('wocookie'));
     session_start();
     ini_set('session.gc_divisor', 40);
     // Send modified header for IE 6.0 Security Policy
     header('P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"');
 }