本文主要介紹了PHP基於MySQLI函數封裝的資料庫連接工具類,結合執行個體形式分析了php封裝mysqli函數實現的資料庫操作類定義及串連、增刪改查資料庫等基本操作用法,需要的朋友可以參考下,希望能協助到大家。
mysql.class.php:
<?phpclass mysql{ private $mysqli; private $result; /** * 資料庫連接 * @param $config 配置數組 */ public function connect($config) { $host = $config['host']; //主機地址 $username = $config['username'];//使用者名稱 $password = $config['password'];//密碼 $database = $config['database'];//資料庫 $port = $config['port']; //連接埠號碼 $this->mysqli = new mysqli($host, $username, $password, $database, $port); } /** * 資料查詢 * @param $table 資料表 * @param null $field 欄位 * @param null $where 條件 * @return mixed 查詢結果數目 */ public function select($table, $field = null, $where = null) { $sql = "SELECT * FROM {$table}"; if (!empty($field)) { $field = '`' . implode('`,`', $field) . '`'; $sql = str_replace('*', $field, $sql); } if (!empty($where)) { $sql = $sql . ' WHERE ' . $where; } $this->result = $this->mysqli->query($sql); return $this->result->num_rows; } /** * @return mixed 擷取全部結果 */ public function fetchAll() { return $this->result->fetch_all(MYSQLI_ASSOC); } /** * 插入資料 * @param $table 資料表 * @param $data 資料數組 * @return mixed 插入ID */ public function insert($table, $data) { foreach ($data as $key => $value) { $data[$key] = $this->mysqli->real_escape_string($value); } $keys = '`' . implode('`,`', array_keys($data)) . '`'; $values = '\'' . implode("','", array_values($data)) . '\''; $sql = "INSERT INTO {$table}( {$keys} )VALUES( {$values} )"; $this->mysqli->query($sql); return $this->mysqli->insert_id; } /** * 更新資料 * @param $table 資料表 * @param $data 資料數組 * @param $where 過濾條件 * @return mixed 受影響記錄 */ public function update($table, $data, $where) { foreach ($data as $key => $value) { $data[$key] = $this->mysqli->real_escape_string($value); } $sets = array(); foreach ($data as $key => $value) { $kstr = '`' . $key . '`'; $vstr = '\'' . $value . '\''; array_push($sets, $kstr . '=' . $vstr); } $kav = implode(',', $sets); $sql = "UPDATE {$table} SET {$kav} WHERE {$where}"; $this->mysqli->query($sql); return $this->mysqli->affected_rows; } /** * 刪除資料 * @param $table 資料表 * @param $where 過濾條件 * @return mixed 受影響記錄 */ public function delete($table, $where) { $sql = "DELETE FROM {$table} WHERE {$where}"; $this->mysqli->query($sql); return $this->mysqli->affected_rows; }}
使用方法
<?phprequire_once 'mysql.class.php';/* 配置串連參數 */$config = array( 'type' => 'mysql', 'host' => 'localhost', 'username' => 'woider', 'password' => '3243', 'database' => 'php', 'port' => '3306');/* 串連資料庫 */$mysql = new mysql();$mysql->connect($config);/* 查詢資料 *///1、查詢所有資料$table = 'mysqli';//資料表$num = $mysql->select($table);echo '共查詢到' . $num . '條資料';print_r($mysql->fetchAll());//2、查詢部分資料$field = array('username', 'password'); //過濾欄位$where = 'id % 2 =0'; //過濾條件$mysql->select($table, $field, $where);print_r($mysql->fetchAll());/* 插入資料 */$table = 'mysqli';//資料表$data = array( //資料數組 'username' => 'admin', 'password' => sha1('admin'));$id = $mysql->insert($table, $data);echo '插入記錄的ID為' . $id;/* 修改資料 */$table = 'mysqli';//資料表$data = array( 'password' => sha1('nimda'));$where = 'id = 44';$rows = $mysql->update($table, $data, $where);echo '受影響的記錄數量為' . $rows . '條';/* 刪除資料 */$table = 'mysqli';$where = 'id = 45';$rows = $mysql->delete($table, $where);echo '已刪除' . $rows . '條資料';