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


PHP Debug::instance方法代碼示例

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


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

示例1: instance

 public static function instance()
 {
     if (null === Debug::$instance) {
         Debug::$instance = new Debug();
     }
     return Debug::$instance;
 }
開發者ID:xiaodin1,項目名稱:myqee,代碼行數:7,代碼來源:debug.class.php

示例2: getInstance

 public static function getInstance()
 {
     if (!self::$instance instanceof self) {
         self::$instance = new self();
     }
     return self::$instance;
 }
開發者ID:chitrakojha,項目名稱:introduceme,代碼行數:7,代碼來源:Debug.php

示例3: getInstance

 static function getInstance()
 {
     if (self::$instance == NULL) {
         self::$instance = new Debug();
     }
     return self::$instance;
 }
開發者ID:kamekun,項目名稱:WrapperPHP,代碼行數:7,代碼來源:debug.class.php

示例4: singleton

 public static function singleton()
 {
     if (!isset(self::$instance)) {
         $c = __CLASS__;
         self::$instance = new $c();
     }
     return self::$instance;
 }
開發者ID:swat30,項目名稱:safeballot,代碼行數:8,代碼來源:Debug.php

示例5: Init

 public static function Init($debug_type = "")
 {
     self::$instance = new Debug();
     if (empty($debug_type)) {
         $debug_type = self::$last_debug_type;
     }
     if (stristr($debug_type, "file")) {
         self::$instance->log_file = true;
     } elseif (stristr($debug_type, "screen")) {
         self::$instance->log_screen = true;
     }
     self::$last_debug_type = $debug_type;
 }
開發者ID:BGCX261,項目名稱:zoneideas-svn-to-git,代碼行數:13,代碼來源:debug.class.php

示例6: debug

 /**
  * 獲取debug對象
  * 可安全用於生產環境,在生產環境下將忽略所有debug信息
  * @return Debug
  */
 public static function debug()
 {
     static $debug = null;
     if (null === $debug) {
         if (!IS_CLI && (IS_DEBUG || false !== strpos($_SERVER["HTTP_USER_AGENT"], 'FirePHP') || isset($_SERVER["HTTP_X_FIREPHP_VERSION"])) && class_exists('Debug', true)) {
             $debug = Debug::instance();
         } else {
             $debug = new __NoDebug();
         }
     }
     return $debug;
 }
開發者ID:xiaodin1,項目名稱:myqee,代碼行數:17,代碼來源:core.class.php

示例7: accumulatorStop

  function accumulatorStop($key)
  {
    if (!Debug :: isDebugEnabled())
      return;

    $debug =& Debug :: instance();

    $stop_time = $debug->_timeToFloat(microtime());
    if (! array_key_exists($key, $debug->time_accumulator_list))
    {
      Debug :: writeWarning('Accumulator $key does not exists, run Debug :: accumulator_start first', 'Debug :: accumulator_stop');
      return;
    }
    $accumulator = &$debug->time_accumulator_list[$key];
    $diffTime = $stop_time - $accumulator['temp_time'];
    $accumulator['time'] = $accumulator['time'] + $diffTime;
    ++$accumulator['count'];
  }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:18,代碼來源:Debug.class.php

示例8: i

 public static function i()
 {
     //singleton
     if (!self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }
開發者ID:Ben749,項目名稱:racetrack,代碼行數:8,代碼來源:debug53.php

示例9: GI

 private static function GI()
 {
     if (self::$instance === null) {
         self::$instance = new static();
     }
     return self::$instance;
 }
開發者ID:tedicela,項目名稱:phpdebuglib,代碼行數:7,代碼來源:debug.lib.php

示例10: debug

 /**
  * 返回DEBUG對象
  *
  * @return \Debug
  */
 public static function debug()
 {
     static $debug = null;
     if (null === $debug) {
         if (!\IS_CLI && \IS_DEBUG && false !== \strpos($_SERVER["HTTP_USER_AGENT"], 'FirePHP') && \class_exists('\\Debug', true)) {
             $debug = \Debug::instance();
         } else {
             $debug = new _NoDebug();
         }
     }
     return $debug;
 }
開發者ID:google2013,項目名稱:myqee,代碼行數:17,代碼來源:core.class.php

示例11: debug

 /**
  * 獲取debug對象
  * 可安全用於生產環境,在生產環境下將忽略所有debug信息
  * @return Debug
  */
 public static function debug()
 {
     static $debug = null;
     if (null === $debug) {
         if (!IS_CLI && IS_DEBUG && class_exists('Debug', true)) {
             $debug = Debug::instance();
         } else {
             $debug = new MyQEE_Core_NoDebug();
         }
     }
     return $debug;
 }
開發者ID:google2013,項目名稱:myqeecms,代碼行數:17,代碼來源:Core.class.php

示例12: instance

  static public function instance()
  {
    if (!self :: $instance)
    {
      if(class_exists('DebugMock'))
        self :: $instance = new DebugMock();
      else
        self :: $instance = new Debug();
    }

    return self :: $instance;
  }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:12,代碼來源:Debug.class.php

示例13: debugNav

 public function debugNav()
 {
     $admin = Debug::instance();
     $admin->debugNav($this);
 }
開發者ID:hotarucms,項目名稱:hotarucms,代碼行數:5,代碼來源:Hotaru.php


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