当前位置: 首页>>代码示例>>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;未经允许,请勿转载。