當前位置: 首頁>>代碼示例>>PHP>>正文


PHP HTTP::no_cache_header方法代碼示例

本文整理匯總了PHP中HTTP::no_cache_header方法的典型用法代碼示例。如果您正苦於以下問題:PHP HTTP::no_cache_header方法的具體用法?PHP HTTP::no_cache_header怎麽用?PHP HTTP::no_cache_header使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在HTTP的用法示例。


在下文中一共展示了HTTP::no_cache_header方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: setup

 public function setup()
 {
     HTTP::no_cache_header();
     if (get_setting('qq_login_enabled') != 'Y' or !get_setting('qq_login_app_id') or !get_setting('qq_login_app_key')) {
         H::redirect_msg(AWS_APP::lang()->_t('本站未開通 QQ 登錄'), '/');
     }
 }
開發者ID:egogg,項目名稱:wecenter-dev,代碼行數:7,代碼來源:qq.php

示例2: setup

 public function setup()
 {
     HTTP::no_cache_header();
     if (!$this->model('myapi')->verify_signature(get_class(), $_GET['mobile_sign'])) {
         H::ajax_json_output(AWS_APP::RSM(null, '-1', AWS_APP::lang()->_t('驗簽失敗')));
     }
 }
開發者ID:androiddream,項目名稱:WeCenterMobile-Api,代碼行數:7,代碼來源:account.php

示例3: setup

 public function setup()
 {
     HTTP::no_cache_header();
     if (get_setting('sina_weibo_enabled') != 'Y' or !get_setting('sina_akey') or !get_setting('sina_skey')) {
         H::ajax_json_output(AWS_APP::RSM(null, -1, AWS_APP::lang()->_t('本站未開通微博登錄')));
     }
 }
開發者ID:Gradven,項目名稱:what3.1.7,代碼行數:7,代碼來源:weibo.php

示例4: setup

 public function setup()
 {
     HTTP::no_cache_header();
     TPL::import_clean();
     TPL::import_css(array('mobile/css/icon.css', 'mobile/css/mobile.css'));
     TPL::import_js(array('js/jquery.2.js', 'js/jquery.form.js', 'mobile/js/framework.js', 'mobile/js/aws-mobile.js', 'mobile/js/app.js', 'mobile/js/aw-mobile-template.js'));
 }
開發者ID:Vizards,項目名稱:HeavenSpree,代碼行數:7,代碼來源:weixin.php

示例5: generate

 public function generate()
 {
     $this->captcha->generate();
     HTTP::no_cache_header();
     readfile($this->captcha->getImgDir() . $this->captcha->getId() . $this->captcha->getSuffix());
     die;
 }
開發者ID:egogg,項目名稱:wecenter-dev,代碼行數:7,代碼來源:captcha.php

示例6: setup

 public function setup()
 {
     if (get_setting('index_per_page')) {
         $this->per_page = get_setting('index_per_page');
     }
     HTTP::no_cache_header();
 }
開發者ID:Gradven,項目名稱:what3.1.7,代碼行數:7,代碼來源:ajax.php

示例7: setup

 public function setup()
 {
     HTTP::no_cache_header();
     if (!$this->user_info['permission']['is_administortar'] and !$this->user_info['permission']['is_moderator']) {
         H::ajax_json_output(AWS_APP::RSM(null, -1, AWS_APP::lang()->_t('你沒有權限進行此操作')));
     }
 }
開發者ID:Vizards,項目名稱:HeavenSpree,代碼行數:7,代碼來源:ajax.php

示例8: setup

 public function setup()
 {
     HTTP::no_cache_header();
     if (get_setting('ticket_enabled') != 'Y') {
         H::ajax_json_output(AWS_APP::RSM(null, -1, AWS_APP::lang()->_t('工單係統未啟用')));
     }
 }
開發者ID:elelianghh,項目名稱:wecenter,代碼行數:7,代碼來源:ajax.php

示例9: setup

 public function setup()
 {
     HTTP::no_cache_header();
     $category_ids_map = array(1 => 2);
     if ($category_ids_map[$_GET['category']] and $_GET['category']) {
         $_GET['category_id'] = $category_ids_map[$_GET['category']];
     }
 }
開發者ID:avldya,項目名稱:wecenter,代碼行數:8,代碼來源:js.php

示例10: setup

 public function setup()
 {
     HTTP::no_cache_header();
     #        if (!$this->user_info['permission']['is_administortar'])
     if (1 != 1) {
         H::ajax_json_output(AWS_APP::RSM(null, -1, AWS_APP::lang()->_t('你沒有訪問權限, 請重新登錄')));
     }
 }
開發者ID:ddxmaaa,項目名稱:wecenter-loudong,代碼行數:8,代碼來源:help.php

示例11: setup

 public function setup()
 {
     HTTP::no_cache_header();
     if (get_setting('project_enabled') != 'Y') {
         H::redirect_msg(AWS_APP::lang()->_t('活動係統未啟用'), '/');
     }
     $this->crumb(AWS_APP::lang()->_t('活動'), '/project/');
     TPL::import_css('css/project.css');
 }
開發者ID:elelianghh,項目名稱:wecenter,代碼行數:9,代碼來源:order.php

示例12: array

<?php

/*
+--------------------------------------------------------------------------
|   WeCenter [#RELEASE_VERSION#]
|   ========================================
|   by WeCenter Software
|   © 2011 - 2014 WeCenter. All Rights Reserved
|   http://www.wecenter.com
|   ========================================
|   Support: WeCenter@qq.com
|
+---------------------------------------------------------------------------
*/
require_once '../system/init.php';
HTTP::no_cache_header();
if (file_exists(AWS_PATH . 'config/install.lock.php')) {
    H::redirect_msg(load_class('core_lang')->_t('您的程序已經安裝, 要重新安裝請刪除 system/config/install.lock.php'));
}
@set_time_limit(0);
TPL::assign('page_title', 'WeCenter - Install');
TPL::assign('static_url', '../static');
switch ($_POST['step']) {
    default:
        $system_require = array();
        if (version_compare(PHP_VERSION, ENVIRONMENT_PHP_VERSION, '>=') and get_cfg_var('safe_mode') == false) {
            $system_require['php'] = TRUE;
        }
        if (class_exists('PDO', false)) {
            if (defined('PDO::MYSQL_ATTR_USE_BUFFERED_QUERY')) {
                $system_require['db'] = 'PDO_MYSQL';
開發者ID:chenruixuan,項目名稱:wecenter,代碼行數:31,代碼來源:index.php

示例13: setup

 public function setup()
 {
     HTTP::no_cache_header();
     $this->crumb('Loading...', '/payment/');
 }
開發者ID:elelianghh,項目名稱:wecenter,代碼行數:5,代碼來源:main.php

示例14: setup

 public function setup()
 {
     @set_time_limit(0);
     HTTP::no_cache_header();
 }
開發者ID:yagobski,項目名稱:wecenter,代碼行數:5,代碼來源:main.php

示例15: setup

 public function setup()
 {
     HTTP::no_cache_header();
     $this->crumb(AWS_APP::lang()->_t('搜索'), '/search/');
 }
開發者ID:ddxmaaa,項目名稱:wecenter-loudong,代碼行數:5,代碼來源:main.php


注:本文中的HTTP::no_cache_header方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。