コード例 #1
0
ファイル: util_common.php プロジェクト: ansu2009/web
 function get_cookie($name)
 {
     $this->ci->load->library("IhCookie");
     $cookie = $this->cookieConfig;
     IhCookie::setPrefix($cookie["prefix"]);
     if (IhCookie::is_set($name)) {
         return IhCookie::get($name);
     } else {
         return null;
     }
 }