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


PHP Debug::record方法代碼示例

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


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

示例1: set

 /**
  * 寫入緩存
  * @access public
  * @param string $name 緩存變量名
  * @param mixed $value  存儲數據
  * @param int $expire  有效時間 0為永久
  * @return boolen
  */
 public function set($name, $value, $expire = null)
 {
     Debug::record('cache_write', 1);
     if (is_null($expire)) {
         $expire = $this->options['expire'];
     }
     $filename = $this->filename($name);
     $data = serialize($value);
     if (C('DATA_CACHE_COMPRESS') && function_exists('gzcompress')) {
         //數據壓縮
         $data = gzcompress($data, 3);
     }
     if (C('DATA_CACHE_CHECK')) {
         //開啟數據校驗
         $check = md5($data);
     } else {
         $check = '';
     }
     $data = "<?php\n//" . sprintf('%012d', $expire) . $check . $data . "\n?>";
     $result = file_put_contents($filename, $data);
     if ($result) {
         if ($this->options['length'] > 0) {
             // 記錄緩存隊列
             $this->queue($name);
         }
         clearstatcache();
         return true;
     } else {
         return false;
     }
 }
開發者ID:minowu,項目名稱:smartthink,代碼行數:39,代碼來源:File.php

示例2: execute

 /**
  * 執行語句
  * @access public
  * @param string $str  sql指令
  * @return integer|false
  */
 public function execute($str)
 {
     $this->initConnect(true);
     if (!$this->_linkID) {
         return false;
     }
     $this->queryStr = $str;
     //釋放前次的查詢結果
     if ($this->queryID) {
         $this->free();
     }
     Debug::record('db_write', 1);
     // 記錄開始執行時間
     Debug::mark('queryStartTime');
     $result = mysql_query($str, $this->_linkID);
     $this->debug();
     if (false === $result) {
         $this->error();
         return false;
     } else {
         $this->numRows = mysql_affected_rows($this->_linkID);
         $this->lastInsID = mysql_insert_id($this->_linkID);
         return $this->numRows;
     }
 }
開發者ID:minowu,項目名稱:smartthink,代碼行數:31,代碼來源:Mysql.php


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