当前位置: 首页>>代码示例>>PHP>>正文


PHP es_cookie::is_set方法代码示例

本文整理汇总了PHP中es_cookie::is_set方法的典型用法代码示例。如果您正苦于以下问题:PHP es_cookie::is_set方法的具体用法?PHP es_cookie::is_set怎么用?PHP es_cookie::is_set使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在es_cookie的用法示例。


在下文中一共展示了es_cookie::is_set方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: define

$request_param['m_latitude']= es_session::get("m_latitude");
$request_param['m_longitude']= es_session::get("m_longitude");
*/
define("FOLDER_NAME", "");
define('TMPL_NAME', 'fanwe');
//define("IS_DEBUG",true);
require '../system/common.php';
require '../system/system_init.php';
require './lib/page.php';
require './lib/functions.php';
require './lib/transport.php';
require './lib/template.php';
define('AS_LOG_DIR', APP_ROOT_PATH . 'wap/log/');
define('AS_DEBUG', true);
require './lib/logUtils.php';
if (es_cookie::is_set("is_pc")) {
    es_cookie::delete("is_pc");
}
$transport = new transport();
$transport->use_curl = true;
//调用模板引擎
//require_once  APP_ROOT_PATH.'system/template/template.php';
if (!file_exists(APP_ROOT_PATH . 'public/runtime/wap/')) {
    mkdir(APP_ROOT_PATH . 'public/runtime/wap/', 0777);
}
if (!file_exists(APP_ROOT_PATH . 'public/runtime/wap/tpl_caches/')) {
    mkdir(APP_ROOT_PATH . 'public/runtime/wap/tpl_caches/', 0777);
}
if (!file_exists(APP_ROOT_PATH . 'public/runtime/wap/tpl_compiled/')) {
    mkdir(APP_ROOT_PATH . 'public/runtime/wap/tpl_compiled/', 0777);
}
开发者ID:macall,项目名称:baikec_jsd,代码行数:31,代码来源:index.php

示例2: get_current_deal_city

/**
 * 获取当前团购城市
 */
function get_current_deal_city()
{
    if (es_cookie::is_set("deal_city")) {
        $deal_city_id = es_cookie::get("deal_city");
        $deal_city = $GLOBALS['db']->getRow("select * from " . DB_PREFIX . "deal_city where is_effect = 1 and is_delete = 0 and id = " . intval($deal_city_id));
    }
    if (!$deal_city) {
        //设置如存在的IP订位
        if (file_exists(APP_ROOT_PATH . "system/extend/ip.php")) {
            require_once APP_ROOT_PATH . "system/extend/ip.php";
            $ip = get_client_ip();
            $iplocation = new iplocate();
            $address = $iplocation->getaddress($ip);
            foreach ($city_list as $city) {
                if (strpos($address['area1'], $city['name'])) {
                    $deal_city = $city;
                    break;
                }
            }
        }
        if (!$deal_city) {
            $deal_city = $GLOBALS['db']->getRow("select * from " . DB_PREFIX . "deal_city where is_default = 1 and is_effect = 1 and is_delete = 0");
        }
    }
    return $deal_city;
}
开发者ID:YouthAndra,项目名称:huaitaoo2o,代码行数:29,代码来源:common.php


注:本文中的es_cookie::is_set方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。