本文整理匯總了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;
}
}
示例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;
}
}