日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 运维知识 > 数据库 >内容正文

数据库

php简单的mysql类_PHP 简单mysql封装类

發(fā)布時間:2025/3/19 数据库 15 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php简单的mysql类_PHP 简单mysql封装类 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

class Mysql {

private $host ;

private $user ;

private $pwd ;

private $dbName ;

private $charset ;

private $conn=null ;

public function __construct(){

$this->host = 'localhost' ;

$this->user = 'root' ;

$this->pwd = '' ;

$this->dbName = 'test' ;

//鏈接

$this->connect($this->host, $this->user, $this->pwd);

//切換庫

$this->switchDb($this->dbName) ;

//設(shè)置字符集

$this->setChar($this->charset);

}

//負責(zé)連接數(shù)據(jù)庫

private function connect($h, $u , $p){

$conn = mysql_connect($h, $u , $p);

$this->conn = $conn ;

}

//查詢

public function query($sql){

return mysql_query($sql,$this->conn);

}

//切換數(shù)據(jù)庫

public function switchDb($db){

$sql = 'use '.$db;

$this->query($sql);

}

//設(shè)置字符集

public function setChar($char){

$sql = 'set names '.$char;

$this->query($sql);

}

//返回多行多列結(jié)果

public function getAll($sql){

$list = array();

$rs = $this->query($sql) ;

if (!$rs)

{

return false;

};

while ( $row = mysql_fetch_assoc($rs) )

{

$list[] = $row ;

}

return $list ;

}

//獲取一行的結(jié)果

public function getRow($sql){

$rs = $this->query($sql) ;

if (!$rs){

return false;

}

return mysql_fetch_assoc($rs) ;

}

public function getOne($sql){

$rs = $this->query($sql) ;

if (!$rs){

return false;

}

$row = mysql_fetch_row($rs) ;

return $row[0] ;

}

public function __destruct(){

mysql_close($this->conn);

}

}

$mysql = new Mysql();

//print_r($mysql);

/*

$sql = "insert into class values ('李四','20','90','80')" ;

if ( $mysql->query($sql)){

echo '查詢成功哦!' ;

}

else

{

echo '查詢失敗哦!' ;

}

*/

echo '
' ;

$sql = 'select * from class' ;

$arr = $mysql->getAll($sql) ;

//print_r($arr) ;

$sql = 'select * from class where score = 0' ;

print_r($mysql->getRow($sql)) ;

$sql = 'select count(*) from class' ;

print_r($mysql->getOne($sql)) ;

?> 轉(zhuǎn)自:燕十八

總結(jié)

以上是生活随笔為你收集整理的php简单的mysql类_PHP 简单mysql封装类的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。