| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2006-2012 http://thinkphp.cn All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: liu21st <liu21st@gmail.com>
- // +----------------------------------------------------------------------
- // $Id: Cookie.class.php 2702 2012-02-02 12:35:01Z liu21st $
- /**
- +------------------------------------------------------------------------------
- * Cookie管理类
- +------------------------------------------------------------------------------
- * @category Think
- * @package Think
- * @subpackage Util
- * @author liu21st <liu21st@gmail.com>
- * @version $Id: Cookie.class.php 2702 2012-02-02 12:35:01Z liu21st $
- +------------------------------------------------------------------------------
- */
- class Cookie {
- // 判断Cookie是否存在
- static function is_set($name) {
- return isset($_COOKIE[C('COOKIE_PREFIX').$name]);
- }
- // 获取某个Cookie值
- static function get($name) {
- $value = $_COOKIE[C('COOKIE_PREFIX').$name];
- $value = unserialize(base64_decode($value));
- return $value;
- }
- // 设置某个Cookie值
- static function set($name,$value,$expire='',$path='',$domain='') {
- if($expire=='') {
- $expire = C('COOKIE_EXPIRE');
- }
- if(empty($path)) {
- $path = C('COOKIE_PATH');
- }
- if(empty($domain)) {
- $domain = C('COOKIE_DOMAIN');
- }
- $expire = !empty($expire)? time()+$expire : 0;
- $value = base64_encode(serialize($value));
- setcookie(C('COOKIE_PREFIX').$name, $value,$expire,$path,$domain);
- $_COOKIE[C('COOKIE_PREFIX').$name] = $value;
- }
- // 删除某个Cookie值
- static function delete($name) {
- Cookie::set($name,'',-3600);
- unset($_COOKIE[C('COOKIE_PREFIX').$name]);
- }
- // 清空Cookie值
- static function clear() {
- unset($_COOKIE);
- }
- }
|