php实现mysql封装类示例

前端之家收集整理的这篇文章主要介绍了php实现mysql封装类示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

PHP封装MysqL

代码如下:
PHP

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 = 'root';
$this->dbName = 'test';

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

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

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

//负责链接
private function connect($h,$u,$p) {
$conn = MysqL_connect($h,$p);
$this->conn = $conn;
}

//负责切换数据库
public function switchDb($db) {
$sql = 'use' . $db;
$this->query($sql);
}

//负责设置字符集
public function setChar($char) {
$sql = 'set names' . $char;
$this->query($sql);
}

//负责发送SQL查询
public function query($sql) {
return MysqL_query($sql,$this->conn);
}

//负责获取多行多列的select结果
public function getAll($sql) {
$list = array();

$rs = $this->query($sql);
if (!$rs) {
return false;
}

while ($row = MysqL_fetch_assoc($rs)) {
$list[] = $row;
}

return $list;
}

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;
}
return MysqL_fetch_assoc($rs);

return $row[0];
}

public function close() {
MysqL_close($this->conn);
}
}

echo '

';
$MysqL = new MysqL();
print_r($MysqL);

$sql = "insert into stu values (4,'wangwu','99998')";

if($MysqL->query($sql)){
echo "query成功";
}else {
echo "失败";
}

echo "
";

$sql = "select * from stu";
$arr = $MysqL->getAll($sql);

print_r($arr);
?>

原文链接:https://www.f2er.com/php/24700.html

猜你在找的PHP相关文章