一个php Mysql类 可以参考学习熟悉下


Posted in PHP onJune 21, 2009
<?php 
class Mysql 
{ 
private $conn; 
private $host; 
private $username; 
private $password; 
private $dbname; 
private $pconnect; 
private $charset; public function __construct(array $params = null) 
{ 
if (!empty($params)) { 
foreach ($params as $k => $v) { 
$this->$k = $v; 
} 
} 
} 
public function connect() 
{ 
$fun = $this->pconnect ? 'mysql_pconnect' : 'mysql_connect'; 
$this->conn = $fun($this->host, $this->username, $this->password); 
$this->conn && $this->query('set names ' . $this->charset); 
$this->conn && mysql_select_db($this->dbname, $this->conn); 
} 
public function getInstance() 
{ 
return $this->conn; 
} 
public function query($sql) 
{ 
return mysql_query($sql, $this->conn); 
} 
public function fetchOne($sql) 
{ 
$data = $this->fetchRow($sql); 
return $data[0]; 
} 
public function fetchCol($sql) 
{ 
$tmp = $this->fetchAll($sql, MYSQL_NUM); 
foreach ($tmp as $v) { 
$data[] = $v[0]; 
} 
} 
public function fetchRow($sql) 
{ 
$result = $this->query($sql); 
$data = mysql_fetch_row($result); 
mysql_free_result($result); 
return $data; 
} 
public function fetchAssoc($sql) 
{ 
$result = $this->query($sql); 
$data = mysql_fetch_assoc($result); 
mysql_free_result($result); 
return $data; 
} 
public function fetchAll($sql, $type = MYSQL_ASSOC) 
{ 
$result = $this->query($sql); 
while ($tmp = mysql_fetch_array($result, $type)) { 
$data[] = $tmp; 
} 
return $data; 
} 
public function fetchPairs($sql) 
{ 
$result = $this->query($sql); 
while ($tmp = mysql_fetch_row($result)) { 
$data[$tmp[0]] = $tmp[1]; 
} 
return $data; 
} 
public function insert($table, array $bind) 
{ 
$cols = array(); 
$vals = array(); 
foreach ($bind as $col => $val) { 
$cols[] = $col; 
$vals[] = $val; 
unset($bind[$col]); 
} 
$sql = "INSERT INTO " 
. $table 
. ' (`' . implode('`, `', $cols) . '`) ' 
. 'VALUES (\'' . implode('\', \'', $vals) . '\')'; 
$stmt = $this->query($sql, $this->conn); 
$result = $this->affectedRows(); 
return $result; 
} 
public function getLastInsertId() 
{ 
return mysql_insert_id($this->conn); 
} 
public function affectedRows() 
{ 
return mysql_affected_rows($this->conn); 
} 
public function update($table, array $bind, $where = '') 
{ 
$set = array(); 
foreach ($bind as $col => $val) { 
$set[] = '`' . $col . "` = '" . $val . "'"; 
} 
$sql = "UPDATE `" 
. $table 
. '` SET ' . implode(', ', $set) 
. (($where) ? " WHERE $where" : ''); 
$stmt = $this->query($sql, array_values($bind)); 
$result = $this->affectedRows(); 
return $result; 
} 
public function delete($table, $where = '') 
{ 
/** 
* Build the DELETE statement 
*/ 
$sql = "DELETE FROM " 
. $table 
. (($where) ? " WHERE $where" : ''); 
/** 
* Execute the statement and return the number of affected rows 
*/ 
$stmt = $this->query($sql); 
$result = $stmt ? mysql_affected_rows($this->conn) : $stmt; 
return $result; 
} 
public function close() 
{ 
$this->conn && mysql_close($this->conn); 
} 
} 
?>
PHP 相关文章推荐
个人站长制做网页常用的php代码
Mar 03 PHP
php不用正则采集速度探究总结
Mar 24 PHP
php中转义mysql语句的实现代码
Jun 24 PHP
基于curl数据采集之单页面并行采集函数get_htmls的使用
Apr 28 PHP
php中调用其他系统http接口的方法说明
Feb 28 PHP
php获取文件名后缀常用方法小结
Feb 24 PHP
php可扩展的验证类实例(可对邮件、手机号、URL等验证)
Jul 09 PHP
PHP 数组基本操作小结(推荐)
Jun 13 PHP
PHP加密技术的简单实现
Sep 04 PHP
PHP二进制与字符串之间的相互转换教程
Oct 14 PHP
PHP基于imagick扩展实现合成图片的两种方法【附imagick扩展下载】
Nov 14 PHP
php-fpm超时时间设置request_terminate_timeout资源问题分析
Sep 27 PHP
discuz7 phpMysql操作类
Jun 21 #PHP
php 将bmp图片转为jpg等其他任意格式的图片
Jun 21 #PHP
ie6 动态缩略图不显示的原因
Jun 21 #PHP
PHP COOKIE设置为浏览器进程
Jun 21 #PHP
PHP 输出缓存详解
Jun 20 #PHP
php 图像函数大举例(非原创)
Jun 20 #PHP
PHP 类型转换函数intval
Jun 20 #PHP
You might like
PHP中函数rand和mt_rand的区别比较
2012/12/26 PHP
PHP版本的选择5.2.17 5.3.27 5.3.28 5.4 5.5兼容性问题分析
2016/04/04 PHP
JavaScript 未结束的字符串常量常见解决方法
2010/01/24 Javascript
Jquery Select操作方法集合脚本之家特别版
2010/05/17 Javascript
仿猪八戒网左下角的文字滚动效果
2011/10/28 Javascript
自己实现string的substring方法 人民币小写转大写,数字反转,正则优化
2012/09/02 Javascript
javascript中的startWith和endWith的几种实现方法
2013/05/07 Javascript
JS中使用new Date(str)创建时间对象不兼容firefox和ie的解决方法(两种)
2016/12/14 Javascript
JavaScript数据结构之二叉树的删除算法示例
2017/04/13 Javascript
Electron-vue脚手架改造vue项目的方法
2018/10/22 Javascript
微信小程序实现带参数的分享功能(两种方法)
2019/05/17 Javascript
vue中组件通信的八种方式(值得收藏!)
2019/08/09 Javascript
基于ant design日期控件使用_仅月份的操作
2020/10/27 Javascript
详解Vue数据驱动原理
2020/11/17 Javascript
[00:55]2015国际邀请赛中国区预选赛5月23日——28日约战上海
2015/05/25 DOTA
python开发之list操作实例分析
2016/02/22 Python
利用python实现简单的邮件发送客户端示例
2017/12/23 Python
python爬虫使用cookie登录详解
2017/12/27 Python
浅谈pandas中DataFrame关于显示值省略的解决方法
2018/04/08 Python
Numpy掩码式数组详解
2018/04/17 Python
使用python中的in ,not in来检查元素是不是在列表中的方法
2018/07/06 Python
python retrying模块的使用方法详解
2019/09/25 Python
深入浅析HTML5中的SVG
2015/11/27 HTML / CSS
html5使用canvas实现弹幕功能示例
2017/09/11 HTML / CSS
一道写SQL的面试题和答案
2013/11/19 面试题
final, finally, finalize的区别
2012/03/01 面试题
会计师事务所审计实习自我鉴定
2013/09/20 职场文书
师范应届生教师求职信
2013/11/05 职场文书
新闻专业个人求职信
2013/12/19 职场文书
列车长先进事迹材料
2014/01/25 职场文书
2014新课程改革心得体会
2014/03/10 职场文书
2015年小学总务工作总结
2015/07/21 职场文书
如何理解Vue简单状态管理之store模式
2021/05/15 Vue.js
pycharm部署django项目到云服务器的详细流程
2021/06/29 Python
alibaba seata服务端具体实现
2022/02/24 Java/Android
python图像处理 PIL Image操作实例
2022/04/09 Python