php encapsulates mysql class
Recommended related mysql video tutorials: "mysql tutorial"
<?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); } //負(fù)責(zé)鏈接 private function connect($h,$u,$p) { $conn = mysql_connect($h,$u,$p); $this->conn = $conn; } //負(fù)責(zé)切換數(shù)據(jù)庫(kù) public function switchDb($db) { $sql = 'use' . $db; $this->query($sql); } //負(fù)責(zé)設(shè)置字符集 public function setChar($char) { $sql = 'set names' . $char; $this->query($sql); } //負(fù)責(zé)發(fā)送sql查詢(xún) public function query($sql) { return mysql_query($sql,$this->conn); } //負(fù)責(zé)獲取多行多列的select結(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; } 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 '<pre class="brush:php;toolbar:false">'; $mysql = new Mysql(); print_r($mysql); $sql = "insert into stu values (4,'wangwu','99998')"; if($mysql->query($sql)){ echo "query成功"; }else { echo "失敗"; } echo "<br />"; $sql = "select * from stu"; $arr = $mysql->getAll($sql); print_r($arr); ?>
For more articles related to examples of PHP implementation of mysql encapsulation classes, please pay attention to the PHP Chinese website!
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article
Grass Wonder Build Guide | Uma Musume Pretty Derby
1 months ago
By Jack chen
Roblox: 99 Nights In The Forest - All Badges And How To Unlock Them
4 weeks ago
By DDD
Uma Musume Pretty Derby Banner Schedule (July 2025)
1 months ago
By Jack chen
RimWorld Odyssey Temperature Guide for Ships and Gravtech
3 weeks ago
By Jack chen
Windows Security is blank or not showing options
1 months ago
By 下次還敢

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)