コード例 #1
0
ファイル: Cookie.lib.php プロジェクト: NateBrune/bithub
 /**
  * Get the data from the current cookie
  */
 private function _load()
 {
     $this->_value = CookieStore::get($this->_name);
     if (empty($this->_value) || !is_array($this->_value)) {
         $this->_value = array();
     }
 }