| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- // +----------------------------------------------------------------------
- // | Fanwe 方维直播系统
- // +----------------------------------------------------------------------
- // | Copyright (c) 2011 http://www.fanwe.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Author: 云淡风轻(1956838968@qq.com)
- // +----------------------------------------------------------------------
- class es_cookie
- {
- // 判断Cookie是否存在
- static function is_set($name) {
- return isset($_COOKIE[$name]);
- }
- // 获取某个Cookie值
- static function get($name) {
- if(isset($_COOKIE[$name]))
- $value = $_COOKIE[$name];
- else
- $value = null;
- return $value;
- }
- // 设置某个Cookie值
- static function set($name,$value,$expire='',$path='',$domain='') {
- $path = $GLOBALS['distribution_cfg']['COOKIE_PATH'];
- $domain = $GLOBALS['distribution_cfg']['DOMAIN_ROOT'];
- $expire = !empty($expire)?get_gmtime()+$expire:0;
- setcookie($name, $value,$expire,$path,$domain);
- }
- // 删除某个Cookie值
- static function delete($name) {
- es_cookie::set($name,'',0);
- }
- // 清空Cookie值
- static function clear() {
- unset($_COOKIE);
- }
- }
- ?>
|