亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP中基于MySQLI函數如何封裝數據庫連接工具類

發布時間:2021-07-24 14:26:33 來源:億速云 閱讀:264 作者:小新 欄目:開發技術

小編給大家分享一下PHP中基于MySQLI函數如何封裝數據庫連接工具類,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

具體如下:

mysql.class.php:

<?php
class 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;
  }
}

使用方法

<?php
require_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 . '條數據';

以上是“PHP中基于MySQLI函數如何封裝數據庫連接工具類”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

五家渠市| 滦平县| 醴陵市| 乌鲁木齐县| 青铜峡市| 澄城县| 蒲城县| 安吉县| 兴隆县| 灵武市| 景德镇市| 会昌县| 临夏市| 建昌县| 越西县| 吉木萨尔县| 双牌县| 阿克苏市| 乌兰浩特市| 新竹县| 安新县| 济阳县| 遂川县| 屯昌县| 博客| 富川| 红桥区| 于田县| 沐川县| 易门县| 鲁山县| 凤阳县| 普兰店市| 故城县| 闻喜县| 班玛县| 山西省| 奉节县| 大余县| 乌海市| 定南县|