php写的带缓存数据功能的mysqli类


Posted in PHP onSeptember 06, 2012
<?php 
/** 
* Mysqli类 
*/ 
class db_mysqli { 
protected $mysqli; 
protected $sql; 
protected $rs; 
protected $query_num = 0; 
protected $fetch_mode = MYSQLI_ASSOC; 
protected $cache_dir = './cache/'; 
protected $cache_time = 1800; 
public function __construct($dbhost, $dbuser, $dbpass, $dbname) { 
$this->mysqli = new mysqli($dbhost, $dbuser, $dbpass, $dbname); 
if(mysqli_connect_errno()) { 
$this->mysqli = false; 
echo '<h2>'.mysqli_connect_error().'</h2>'; 
die(); 
} else { 
$this->mysqli->set_charset("utf8"); 
} 
} 
public function __destruct() { 
$this->free(); 
$this->close(); 
} 
protected function free() { 
@$this->rs->free(); 
} 
protected function close() { 
$this->mysqli->close(); 
} 
protected function fetch() { 
return $this->rs->fetch_array($this->fetch_mode); 
} 
protected function getQuerySql($sql, $limit = null) { 
if (@preg_match("/[0-9]+(,[ ]?[0-9]+)?/is", $limit) && !preg_match("/ LIMIT [0-9]+(,[ ]?[0-9]+)?$/is", $sql)) { 
$sql .= " LIMIT " . $limit; 
} 
return $sql; 
} 
protected function get_cache($sql,$method) { 
include_once './cache.php';//若框架中使用__autoload(),这里可以不用加载文件 
$cache = new cache($this->cache_dir,$this->cache_time); 
$cache_file = md5($sql.$method); 
$res = $cache->get_cache($cache_file); 
if(!$res) { 
$res = $this->$method($sql); 
$cache->set_cache($cache_file, $res); 
} 
return $res; 
} 
public function query_num() { 
return $this->query_num; 
} 
public function set_cache_dir($cache_dir) { 
$this->cache_dir = $cache_dir; 
} 
public function set_cache_time($cache_time) { 
$this->cache_time = $cache_time; 
} 
public function query($sql, $limit = null) { 
$sql = $this->getQuerySql($sql, $limit); 
$this->sql = $sql; 
$this->rs = $this->mysqli->query($sql); 
if (!$this->rs) { 
echo "<h2>".$this->mysqli->error."</h2>"; 
die(); 
} else { 
$this->query_num++; 
return $this->rs; 
} 
} 
public function getOne($sql) { 
$this->query($sql, 1); 
$this->fetch_mode = MYSQLI_NUM; 
$row = $this->fetch(); 
$this->free(); 
return $row[0]; 
} 
public function get_one($sql) { 
return $this->getOne($sql); 
} 
public function cache_one($sql) { 
$sql = $this->getQuerySql($sql, 1); 
return $this->get_cache($sql, 'getOne'); 
} 
public function getRow($sql, $fetch_mode = MYSQLI_ASSOC) { 
$this->query($sql, 1); 
$this->fetch_mode = $fetch_mode; 
$row = $this->fetch(); 
$this->free(); 
return $row; 
} 
public function get_row($sql, $fetch_mode = MYSQLI_ASSOC) { 
return $this->getRow($sql); 
} 
public function cache_row($sql) { 
$sql = $this->getQuerySql($sql, 1); 
return $this->get_cache($sql, 'getRow'); 
} 
public function getAll($sql, $limit = null, $fetch_mode = MYSQLI_ASSOC) { 
$this->query($sql, $limit); 
$all_rows = array(); 
$this->fetch_mode = $fetch_mode; 
while($rows = $this->fetch()) { 
$all_rows[] = $rows; 
} 
$this->free(); 
return $all_rows; 
} 
public function get_all($sql, $limit = null, $fetch_mode = MYSQLI_ASSOC) { 
return $this->getAll($sql); 
} 
public function cache_all($sql, $limit = null) { 
$sql = $this->getQuerySql($sql, $limit); 
return $this->get_cache($sql, 'getAll'); 
} 
public function insert_id() { 
return $this->mysqli->insert_id(); 
} 
public function escape($str) { 
if(is_array($str)) { 
foreach($str as $key=>$val) { 
$str[$key] = $this->escape($val); 
} 
} else { 
$str = addslashes(trim($str)); 
} 
return $str; 
} 
} 
//用法 
$db = new db_mysqli('localhost', 'root', 111222, 'dict'); 
$db->set_cache_time(10); 
$db->set_cache_dir('./cache/sql/'); 
$sql = "select * from words order by word_id limit 10,10"; 
$res1 = $db->get_all($sql); 
$res2 = $db->cache_all($sql); 
echo $db->query_num(),'<br>'; 
?>
PHP 相关文章推荐
PHP 循环列出目录内容的函数代码
May 26 PHP
使用php+Ajax实现唯一校验实现代码[简单应用]
Nov 29 PHP
Php图像处理类代码分享
Jan 19 PHP
php不用正则验证真假身份证
Nov 06 PHP
php对二维数组进行排序的简单实例
Dec 19 PHP
PHP实现把MySQL数据库导出为.sql文件实例(仿PHPMyadmin导出功能)
May 10 PHP
windows8.1下Apache+Php+MySQL配置步骤
Oct 30 PHP
制作个性化的WordPress登陆界面的实例教程
May 21 PHP
让ThinkPHP的模板引擎达到最佳效率的方法详解
Mar 14 PHP
使用WAMP搭建PHP本地开发环境
May 10 PHP
解决laravel中日志权限莫名变成了root的问题
Oct 17 PHP
PHP 裁剪图片
Mar 09 PHP
一个PHP并发访问实例代码
Sep 06 #PHP
PHP连接MongoDB示例代码
Sep 06 #PHP
谨慎使用PHP的引用原因分析
Sep 06 #PHP
很让人受教的 提高php代码质量36计
Sep 05 #PHP
php控制linux服务器常用功能 关机 重启 开新站点等
Sep 05 #PHP
三个类概括PHP的五种设计模式
Sep 05 #PHP
用来解析.htpasswd文件的PHP类
Sep 05 #PHP
You might like
php防止用户重复提交表单
2015/11/02 PHP
yii2.0实现验证用户名与邮箱功能
2015/12/22 PHP
PHP编写文件多服务器同步程序
2016/07/02 PHP
php cookie用户登录的详解及实例代码
2017/01/03 PHP
Laravel中日期时间处理包Carbon的简单使用
2017/09/21 PHP
PHP实现的超长文本分页显示功能示例
2018/06/04 PHP
深入理解JavaScript系列(11) 执行上下文(Execution Contexts)
2012/01/15 Javascript
使用js正则控制input标签只允许输入的值
2013/07/29 Javascript
jquery左右滚动焦点图banner图片鼠标经过显示上下页按钮
2013/10/11 Javascript
javascript中attribute和property的区别详解
2014/06/05 Javascript
JavaScript设计模式之外观模式实例
2014/10/10 Javascript
jquery 实现返回顶部功能
2014/11/17 Javascript
JavaScript获取表单enctype属性的方法
2015/04/02 Javascript
教你使用javascript简单写一个页面模板引擎
2015/05/05 Javascript
在easyUI开发中,出现jquery.easyui.min.js函数库问题的解决办法
2015/09/11 Javascript
15个值得开发人员关注的jQuery开发技巧和心得总结【经典收藏】
2016/05/25 Javascript
JavaScript九九乘法口诀表的简单实现
2016/10/04 Javascript
jQuery 局部div刷新和全局刷新方法总结
2016/10/05 Javascript
浅谈Javascript事件对象
2017/02/05 Javascript
纯JavaScript实现实时反馈系统时间
2017/10/26 Javascript
vue自动添加浏览器兼容前后缀操作
2020/08/13 Javascript
vue element-ul实现展开和收起功能的实例代码
2020/11/25 Vue.js
Python3实现转换Image图片格式
2018/06/21 Python
PyCharm鼠标右键不显示Run unittest的解决方法
2018/11/30 Python
python+selenium实现自动化百度搜索关键词
2019/06/03 Python
Python列表删除元素del、pop()和remove()的区别小结
2019/09/11 Python
TensorFlow保存TensorBoard图像操作
2020/06/23 Python
了解一下python内建模块collections
2020/09/07 Python
Python如何使用vars返回对象的属性列表
2020/10/17 Python
IWOOT美国:新奇的小玩意
2018/04/27 全球购物
英国伦敦的睡衣品牌:Asceno
2019/10/06 全球购物
中东最大的在线宠物店:Dubai Pet Food
2020/06/11 全球购物
幼儿园教师奖惩制度
2014/02/01 职场文书
电大毕业生自我鉴定
2014/04/10 职场文书
合伙经营协议书范本(通用版)
2014/12/03 职场文书
CSS实现漂亮的时钟动画效果的实例代码
2021/03/30 HTML / CSS