php基于單例模式封裝mysql類完整實(shí)例
本文實(shí)例講述了php基于單例模式封裝mysql類。分享給大家供大家參考,具體如下:
類:
<?php
header("content-type:text/html;charset=utf-8");
//封裝一個(gè)類
/*
掌握滿足單例模式的必要條件
(1)私有的構(gòu)造方法-為了防止在類外使用new關(guān)鍵字實(shí)例化對(duì)象
(2)私有的成員屬性-為了防止在類外引入這個(gè)存放對(duì)象的屬性
(3)私有的克隆方法-為了防止在類外通過clone成生另一個(gè)對(duì)象
(4)公有的靜態(tài)方法-為了讓用戶進(jìn)行實(shí)例化對(duì)象的操作
*/
class db{
//三私一共
//私有的靜態(tài)屬性
private static $dbcon=false;
//私有的構(gòu)造方法
private function __construct(){
$dbcon=@mysql_connect("localhost","root","root");
mysql_select_db("small2",$dbcon) or die("mysql_connect error");
mysql_query("set names utf8");
}
//私有的克隆方法
private function __clone(){}
//公用的靜態(tài)方法
public static function getIntance(){
if(self::$dbcon==false){
self::$dbcon=new self;
}
return self::$dbcon;
}
//打印數(shù)據(jù)
public function p($arr){
echo "<pre>";
print_r($arr);
echo "</pre>";
}
public function v($arr){
echo "<pre>";
var_dump($arr);
echo "</pre>";
}
//執(zhí)行語(yǔ)句
public function query($sql){
$query=mysql_query($sql);
return $query;
}
/**
* 查詢某個(gè)字段
* @param
* @return string or int
*/
public function getOne($sql){
$query=$this->query($sql);
return mysql_result($query,0);
}
//獲取一行記錄,return array 一維數(shù)組
public function getRow($sql,$type="assoc"){
$query=$this->query($sql);
if(!in_array($type,array("assoc",'array',"row"))){
die("mysql_query error");
}
$funcname="mysql_fetch_".$type;
return $funcname($query);
}
//獲取一條記錄,前置條件通過資源獲取一條記錄
public function getFormSource($query,$type="assoc"){
if(!in_array($type,array("assoc","array","row")))
{
die("mysql_query error");
}
$funcname="mysql_fetch_".$type;
return $funcname($query);
}
//獲取多條數(shù)據(jù),二維數(shù)組
public function getAll($sql){
$query=$this->query($sql);
$list=array();
while ($r=$this->getFormSource($query)) {
$list[]=$r;
}
return $list;
}
//獲得最后一條記錄id
public function getInsertid(){
return mysql_insert_id();
}
/**
* 定義添加數(shù)據(jù)的方法
* @param string $table 表名
* @param string orarray $data [數(shù)據(jù)]
* @return int 最新添加的id
*/
public function insert($table,$data){
//遍歷數(shù)組,得到每一個(gè)字段和字段的值
$key_str='';
$v_str='';
foreach($data as $key=>$v){
if(empty($v)){
die("error");
}
//$key的值是每一個(gè)字段s一個(gè)字段所對(duì)應(yīng)的值
$key_str.=$key.',';
$v_str.="'$v',";
}
$key_str=trim($key_str,',');
$v_str=trim($v_str,',');
//判斷數(shù)據(jù)是否為空
$sql="insert into $table ($key_str) values ($v_str)";
$this->query($sql);
//返回上一次增加操做產(chǎn)生ID值
return mysql_insert_id();
}
/*
* 刪除一條數(shù)據(jù)方法
* @param1 $table, $where=array('id'=>'1') 表名 條件
* @return 受影響的行數(shù)
*/
public function deleteOne($table, $where){
if(is_array($where)){
foreach ($where as $key => $val) {
$condition = $key.'='.$val;
}
} else {
$condition = $where;
}
$sql = "delete from $table where $condition";
$this->query($sql);
//返回受影響的行數(shù)
return mysql_affected_rows();
}
/*
* 刪除多條數(shù)據(jù)方法
* @param1 $table, $where 表名 條件
* @return 受影響的行數(shù)
*/
public function deleteAll($table, $where){
if(is_array($where)){
foreach ($where as $key => $val) {
if(is_array($val)){
$condition = $key.' in ('.implode(',', $val) .')';
} else {
$condition = $key. '=' .$val;
}
}
} else {
$condition = $where;
}
$sql = "delete from $table where $condition";
$this->query($sql);
//返回受影響的行數(shù)
return mysql_affected_rows();
}
/**
* [修改操作description]
* @param [type] $table [表名]
* @param [type] $data [數(shù)據(jù)]
* @param [type] $where [條件]
* @return [type]
*/
public function update($table,$data,$where){
//遍歷數(shù)組,得到每一個(gè)字段和字段的值
$str='';
foreach($data as $key=>$v){
$str.="$key='$v',";
}
$str=rtrim($str,',');
//修改SQL語(yǔ)句
$sql="update $table set $str where $where";
$this->query($sql);
//返回受影響的行數(shù)
return mysql_affected_rows();
}
}
?>
測(cè)試:
//mysql測(cè)試
//$db=db::getIntance();
//var_dump($db);
/*$sql="select * from acticle";
$list=$db->getAll($sql);
$db->p($list);*/
/*$sql="select * from acticle where acticle_id=95";
$list=$db->getRow($sql);
$db->p($list);
*/
/*$sql="select title from acticle";
$list=$db->getOne($sql);
$db->p($list);*/
//$list=$db->insert("users",$_POST);
//$del=$db->deleteOne("users","id=26");
//$del=$db->deleteAll("users","id in(23,24)");
//$up=$db->update("users",$_POST,"id=27");
//$id=$db->getInsertid();
//print_R($id);
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php+mysql數(shù)據(jù)庫(kù)操作入門教程》、《PHP基本語(yǔ)法入門教程》、《PHP運(yùn)算與運(yùn)算符用法總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》及《php常見數(shù)據(jù)庫(kù)操作技巧匯總》
希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。
- PHP封裝mysqli基于面向?qū)ο蟮膍ysql數(shù)據(jù)庫(kù)操作類與用法示例
- PHP封裝的mysqli數(shù)據(jù)庫(kù)操作類示例
- PHP基于MySQLI函數(shù)封裝的數(shù)據(jù)庫(kù)連接工具類【定義與用法】
- php基于PDO實(shí)現(xiàn)功能強(qiáng)大的MYSQL封裝類實(shí)例
- php封裝的mysqli類完整實(shí)例
- php mysql 封裝類實(shí)例代碼
- php封裝的連接Mysql類及用法分析
- php實(shí)現(xiàn)mysql封裝類示例
- PHP訪問MYSQL數(shù)據(jù)庫(kù)封裝類(附函數(shù)說明)
- php鏈?zhǔn)讲僮鱩ysql數(shù)據(jù)庫(kù)(封裝類帶使用示例)
相關(guān)文章
PHP連接MySQL數(shù)據(jù)庫(kù)操作代碼實(shí)例解析
這篇文章主要介紹了PHP連接MySQL數(shù)據(jù)庫(kù)操作代碼實(shí)例解析,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-07-07
php對(duì)gzip文件或者字符串解壓實(shí)例參考
要采集一個(gè)網(wǎng)站,目標(biāo)站采用了gzip壓縮傳輸網(wǎng)頁(yè),本來(lái)應(yīng)該只要發(fā)送一個(gè)http頭 Accept-Encoding: identity或者干脆不發(fā)送這個(gè)頭等,就可以使目標(biāo)站返回沒有經(jīng)過gzip壓縮的頁(yè)面了,不過很不幸,目標(biāo)站無(wú)視客戶端的請(qǐng)求,仍然返回gzip數(shù)據(jù),造成亂碼。2008-07-07
php設(shè)計(jì)模式之簡(jiǎn)單工廠模式詳解
這篇文章主要介紹了php設(shè)計(jì)模式的簡(jiǎn)單工廠模式,又稱為靜態(tài)工廠方法模式,是一種重要的PHP設(shè)計(jì)模式,需要的朋友可以參考下2014-09-09
PHP編程快速實(shí)現(xiàn)數(shù)組去重的方法詳解
這篇文章主要介紹了PHP編程快速實(shí)現(xiàn)數(shù)組去重的方法,結(jié)合實(shí)例形式分析了php數(shù)組去重復(fù)函數(shù)與使用技巧,需要的朋友可以參考下2017-07-07

