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


PHP Globals::isDebug方法代碼示例

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


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

示例1: initConfig

 private static function initConfig()
 {
     if (self::$_no_of_instance == null) {
         $config = Zend_Registry::get('configuration');
         if (isset($config->cachingfarm)) {
             if (isset($config->default_cache)) {
                 self::$_default_instance = $config->default_cache;
             }
             $list = $config->cachingfarm->list;
             $arr = explode(',', $list);
             if (count($arr) > 0) {
                 self::$_no_of_instance = count($arr);
                 for ($i = 0; $i < self::$_no_of_instance; $i++) {
                     $cache = $arr[$i];
                     if (isset($config->cachingfarm->{$cache})) {
                         $con = $config->cachingfarm->{$cache};
                         $_enable = $con->enable;
                         $_server = $con->host;
                         $_port = $con->port;
                         $debug = Globals::isDebug();
                         if (empty($debug)) {
                             $debug = false;
                         }
                         if ($_enable) {
                             //echo "i'm here with $cache - $_enable - $_server - $_port <br>";
                             $memcache = new Zing_Cache_ZingCache($_server, $_port, $debug);
                             self::$_cache_array[$cache] = $memcache;
                         }
                     }
                 }
             }
         }
     }
 }
開發者ID:utcuong3010,項目名稱:vng,代碼行數:34,代碼來源:ZingGlobalCache.php

示例2: dispatchLoopShutdown

 public function dispatchLoopShutdown()
 {
     if (Globals::isDebug()) {
         $print = "";
         self::$_time_end_render = gettimeofday(true);
         $print = $this->dumpPageRenderProfiler(self::$_time_start_render, self::$_time_end_render);
         $print .= $this->dumpCacheProfiler();
         $print .= '<br><br>' . ProfilerLog::dumpLog();
         $print .= $this->dumpDbProfiler();
         $this->getResponse()->appendBody($print);
     }
 }
開發者ID:utcuong3010,項目名稱:vng,代碼行數:12,代碼來源:ProfilerPlugin.php

示例3: pushToCacheProfiler

 public function pushToCacheProfiler($key, $result, $starttime, $endtime)
 {
     $debug = Globals::isDebug();
     if ($debug == true) {
         $_cache_result = new ResultCache();
         $_cache_result->key = $key;
         $diff = $endtime - $starttime;
         $this->_total_time += $diff;
         $_cache_result->ellapsedtime = $diff;
         if ($result == null) {
             $this->_total_misses++;
             $_cache_result->result = 0;
             $this->_key_profiler_misses[] = $_cache_result;
         } else {
             $this->_total_hits++;
             $_cache_result->result = 1;
             $this->_key_profiler_hits[] = $_cache_result;
         }
     }
 }
開發者ID:utcuong3010,項目名稱:vng,代碼行數:20,代碼來源:ZingCache.php


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