コード例 #1
0
ファイル: konstrukt.inc.php プロジェクト: harrysame/PHP-MySQL
 function cookie($key = null, $default = null)
 {
     return $key ? $this->cookie_access->get($key, $default) : $this->cookie_access;
 }
コード例 #2
0
ファイル: adapter.inc.php プロジェクト: harrysame/PHP-MySQL
 function regenerateId()
 {
     $this->cookie_access->set('session_id', rand());
     return $this->cookie_access->get('session_id');
 }