PHP mysqli database operation class
<?php class Mysql{ private $host = 'localhost'; private $port = '3306'; private $user = 'username'; private $pwd = 'password'; private $db = 'dbname'; private $char = 'UTF8'; private $prefix = ''; private $fetch_mode = MYSQLI_ASSOC;//获取模式 private $result;//结果集 public $mysqli;//mysqli实例<strong>对象</strong> static private $_instance;//本类实例 //构造函数初始化$mysqli<strong>对象</strong> private function __construct() { $this->mysqli=new mysqli($this->host,$this->user,$this->pwd,$this->db,$this->port); if(mysqli_connect_errno()){ $this->mysqli=false; echo mysqli_connect_error(); die(); }else{ $this->mysqli->set_charset($char); } } //析构函数:释放结果集和关闭数据库 public function __destruct(){ $this->free(); $this->close(); } //初始化$mysqli<strong>对象</strong> public static function getInstance(){ if(!(self::$_instance instanceof self)) { self::$_instance = new self(); } return self::$_instance; } //释放结果集 private function free(){ @$this->result->free(); } //关闭数据库连接 private function close(){ $this->mysqli->close(); } //执行sql语句 public function query($sql){ return $this->mysqli->query($sql); } //获取查询结果 public function get_result_array($table,$field,$c $table=$this->prefix.$table; if(is_array($field)){ $field = join(',',$field); } $sql = "SELECT $field FROM ".$table; if(!empty($condition))$sql .=" $condition "; $this->result = $this->query($sql); $return = array(); while($row = $this->fetch($this->result)){ $return[] = $row; } $this->free(); return $return; } //增删改操作 public function execute($table,$action,$arr_field=array(),$c $table=$this->prefix.$table; switch($action){ case 'INSERT': $str_field = ''; $str_val = ''; foreach($arr_field as $key=>$val){ $str_field .= '`'.$key.'`,'; $str_val .= '\''.$val.'\','; } $str_field = rtrim($str_field, ','); $str_val = rtrim($str_val, ','); $sql = "INSERT INTO $table ($str_field) VALUES ($str_val) "; break; case 'DELETE': $sql = "DELETE FROM $table"; if (!empty($condition)) $sql .= " WHERE $condition"; break; case 'UPDATE': $str_field = ''; foreach($arr_field as $key => $val){ $str_field.= '`'.$key ."` ='$val',"; } $str_field = rtrim($str_field, ','); $sql = "UPDATE $table SET $str_field"; if (!empty($condition)) $sql .= " WHERE $condition"; break; } $this->query($sql); return $this->get_affected_rows(); } //获得受影响行数(针对增删改操作) public function get_affected_rows(){ return $this->mysqli->affected_rows; } //获取集合条数 public function get_rows($table,$c 1 ',$id='id'){ $table=$this->prefix.$table; $sql="SELECT COUNT($id) num FROM ".$table." $condition"; $this->result=$this->query($sql); $row=$this->fetch($this->result); return $row['num']; } //获得结果集 public function fetch($result){ return $result->fetch_array($this->fetch_mode); } //获得所有结果集 public function fetch_all($result){ $rows=array(); while($row=$this->fetch($result)){ $rows[]=$row; } return $rows; } }
I want to use PHP to write a database operation class encapsulated by the interface of mobile App
The above introduces the PHP mysqli database operation class, including object content. I hope it will be helpful to friends who are interested in PHP tutorials.

Hot AI Tools

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

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

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

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)

Hot Topics

When writing web applications using PHP, a MySQL database is often used to store data. PHP provides a way to interact with the MySQL database called MySQLi. However, sometimes when using MySQLi, you will encounter an error message, as shown below: PHPFatalerror:Calltoundefinedfunctionmysqli_connect() This error message means that PHP cannot find my

Solution to php unable to connect to mysqli: 1. Open the "php.ini" file; 2. Find "mysqli.reconnect"; 3. Change "mysqli.reconnect = OFF" to "mysqli.reconnect = on".

PDOPDO is an object-oriented database access abstraction layer that provides a unified interface for PHP, allowing you to use the same code to interact with different databases (such as Mysql, postgresql, oracle). PDO hides the complexity of underlying database connections and simplifies database operations. Advantages and Disadvantages Advantages: Unified interface, supports multiple databases, simplifies database operations, reduces development difficulty, provides prepared statements, improves security, supports transaction processing Disadvantages: performance may be slightly lower than native extensions, relies on external libraries, may increase overhead, demo code uses PDO Connect to mysql database: $db=newPDO("mysql:host=localhost;dbnam

The running file of mysql is mysqld; mysqld is an executable file, which represents the Mysql server program. Executing this file can directly start a server process; and mysqld_safe is a startup script, which will indirectly call mysqld and also start a monitor. process.

If you encounter the following error message when using PHP to connect to a MySQL database: PHPWarning:mysqli_connect():(HY000/2002):Connectionrefused, then you can try to solve this problem by following the steps below. To confirm whether the MySQL service is running normally, you should first check whether the MySQL service is running normally. If the service is not running or fails to start, it may cause a connection refused error. you can

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

When using the mysqli extension to connect and operate a MySQL database, you sometimes encounter the error PHPFatalerror:Calltoundefinedmethodmysqli::prepare(). This error is usually caused by the following reasons: PHP has insufficient support for the mysqli extension; the mysqli extension is not loaded or configured correctly; there are syntax errors in the PHP code; the MySQL server is not correctly configured or running
