本文实例讲述了PHP实现基于面向对象的MysqLi扩展库增删改查操作工具类。分享给大家供大家参考,具体如下:
MysqLi扩展库是MysqL扩展库的改进版本,在MysqL扩展库的基础上提高了稳定性和效率,MysqLi扩展库有两套东西,一套就是面向过程的MysqLi另一套是面向对象的MysqLi。操作方式大体和MysqL扩展库大体一致,这次还是先抽取出来一个操作MysqL的工具类,和调用的类。
PHP;">
conn=new MysqLi($this->host,$this->username,$this->password,$this->dbname) or die($this->conn->connect_error);
}
//查询
public function query($sql){
$all= $this->conn->query($sql);
return $all;
}
//插入,修改,删除
public function otherOperate($sql){
if($this->conn->query($sql)){
if($this->conn->affected_rows>0){
return "OK";
}else{
return "ERROOR";
}
}
}
public function close(){
$this->conn->close();
}
}
?>
PHP;">
query($sql);
while($row=$result->fetch_assoc()){
echo "$row[stuName]"."";
}
$result->free();
$util->close();*/
$sql="update m_student set stuName='杨幂' where id=3";
$util=new DBUtil();
$result=$util->otherOperate($sql);
echo $result;
$util->close();
?>
更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》、《》及《PHP常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。
原文链接:https://www.f2er.com/php/17136.html