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


PHP core::is_cmd方法代碼示例

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


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

示例1: to_string

 public static function to_string($e)
 {
     if (is_object($e)) {
         $arr = self::format_exception($e);
         $line = $arr['line'];
         $file = $arr['file'];
         $codelist = $arr['codelist'];
         $message = $arr['message'];
         $backtracelist = $arr['backtracelist'];
         ob_start();
         if (core::is_cmd()) {
             include FRAMEWORK_PATH . 'errorpage/exception_cmd.htm';
         } else {
             include FRAMEWORK_PATH . 'errorpage/exception.htm';
         }
         $s = ob_get_contents();
         ob_end_clean();
         return $s;
     } elseif (is_string($e)) {
         return $e;
     }
 }
開發者ID:phpdn,項目名稱:xiunophp,代碼行數:22,代碼來源:xn_exception.class.php

示例2: init

 public static function init($conf = array())
 {
     // ---------------------> 初始化
     core::init_timezone($conf);
     core::init_set();
     core::init_supevar();
     core::init_handle();
     // GPC 安全過濾,關閉,數據的正確性可能會受到影響。
     if (get_magic_quotes_gpc()) {
         core::stripslashes($_GET);
         core::stripslashes($_POST);
         core::stripslashes($_COOKIE);
     }
     // 如果非命令行,則輸出 header 頭
     if (!core::is_cmd()) {
         header("Expires: 0");
         header("Cache-Control: private, post-check=0, pre-check=0, max-age=0");
         header("Pragma: no-cache");
         header('Content-Type: text/html; charset=UTF-8');
         header('X-Powered-By: XiunoPHP;');
         // 隱藏 PHP 版本 X-Powered-By: PHP/5.2.5
     }
 }
開發者ID:phpdn,項目名稱:xiunophp,代碼行數:23,代碼來源:core.class.php

示例3: br

 public static function br($s)
 {
     if (!core::is_cmd()) {
         return nl2br($s);
     } else {
         return $s;
     }
 }
開發者ID:phpdn,項目名稱:xiunophp,代碼行數:8,代碼來源:db_mysql.class.php

示例4: _initBase

 function _initBase(Yaf_Dispatcher $dispatcher)
 {
     // 如果非命令行,則輸出 header 頭
     if (!core::is_cmd()) {
         header("Expires: 0");
         header("Cache-Control: private, post-check=0, pre-check=0, max-age=0");
         header("Pragma: no-cache");
         header('Content-Type: text/html; charset=UTF-8');
         header('X-Powered-By: http://www.lianchuangbrothers.com/');
         // 隱藏 PHP 版本 X-Powered-By: PHP/5.5.9
         header('Server: Microsoft-IIS/11.11');
     }
     //錯誤處理
     $dispatcher->setErrorHandler([get_class($this), 'error_handler']);
     //添加路由協議
     $dispatcher->getRouter()->addConfig((new Yaf_Config_Ini(APP_PATH . '/conf/routes.ini'))->routes);
     //注冊本地類
     Yaf_Loader::getInstance()->registerLocalNameSpace(['helper', 'misc']);
     // 加載數據庫
     Yaf_Registry::set('db', new medoo(Yaf_Registry::get("config")->get('database')->default->toArray()));
     //memcache
     //Yaf_Registry::set('memcache', new Memcache);
     //Yaf_Registry::get('memcache')->pconnect(Yaf_Registry::get("config")->get('memcache')->default->host, Yaf_Registry::get("config")->get('memcache')->default->port, 2.5);
     //redis
     Yaf_Registry::set('redis', new redis());
     //連接redis
     Yaf_Registry::get('redis')->pconnect(Yaf_Registry::get("config")->get('redis')->default->host, Yaf_Registry::get("config")->get('redis')->default->port, 2.5);
     //redis密碼
     Yaf_Registry::get('redis')->auth(Yaf_Registry::get("config")->get('redis')->default->password);
     //使用php內置的serialize/unserialize 方法對數據進行處理
     Yaf_Registry::get('redis')->setOption(Redis::OPT_SERIALIZER, Redis::SERIALIZER_PHP);
     //rediskey加前綴
     Yaf_Registry::get('redis')->setOption(Redis::OPT_PREFIX, Yaf_Registry::get("config")->get('redis')->default->prefix);
     core::ob_start();
 }
開發者ID:290329416,項目名稱:guahao,代碼行數:35,代碼來源:Bootstrap.php


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