Model class for simple database operations
Jump to
[1]
[2]
[Full screen preview]
<?php define("HOSTNAME","127.0.0.1"); define("USERNAME","root"); define("PASSWORD",""); define("DATANAME","class");
Copy after login
2. [code][PHP] code Jump to [1] [2] [Full screen preview]
<?php /* 作者:shyhero 邮箱:shyhero@outlook.com Q Q: 1757424878 */ require("./config.php"); class Model{ private $link; //构造函数,初始化数据库连接 public function __construct(){ $this -> link = mysqli_connect(HOSTNAME,USERNAME,PASSWORD,DATANAME) or die("数据库连接失败"); mysqli_set_charset($this -> link,"utf8"); } //查找 1.表名 2.条件 3.值 如果不添加条件或者值,就全部查询 public function find($table="",$key="",$value=""){ if(!$key||!$value){ $sql = "select * from {$table}"; }else{ $sql = "select * from {$table} where {$key} = '{$value}'"; } $res = mysqli_query($this -> link,$sql); $arr = mysqli_fetch_all($res,MYSQLI_ASSOC); mysqli_free_result($res); return $arr; } //增加 1.表名 2.需要插入的字段 3.值1 public function ins($table="",$zd="name,score",$value=""){ $arr = explode(",",$value); $str = ""; foreach($arr as $k => $v){ $str .= "'".$v."'".","; } $str = rtrim($str,","); $sql = "insert into {$table}({$zd})values({$str})"; $res = mysqli_query($this -> link,$sql); return mysqli_insert_id($this -> link); } //修改 1.表名 2.修改字段 3.值 4.条件 5.值 public function upd($table="",$key="",$value="",$key2="",$value2=""){ $sql = "update {$table} set {$key}='{$value}' where {$key2}='{$value2}'"; $res = mysqli_query($this -> link,$sql); return mysqli_affected_rows($this -> link); } //删除 1.表名 2.条件 3.值 public function del($table="",$key="",$value=""){ $sql = "delete from {$table} where {$key}='{$value}'"; $res = mysqli_query($this -> link,$sql); return mysqli_affected_rows($this -> link); } //析构函数 public function __destruct(){ if(isset($res)) mysqli_free_result($res); mysqli_close($this -> link); } } $m = new Model(); //var_dump($m -> find("stu","id")); var_dump($m -> ins("stu","name","zhu")); //var_dump($m -> upd("stu","name","dujianing","id","1")); //var_dump($m -> del("stu","name","li")); ?>
Copy after login
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

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
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
How Long Does It Take To Beat Split Fiction?
4 weeks ago
By DDD
R.E.P.O. Save File Location: Where Is It & How to Protect It?
1 months ago
By DDD
R.E.P.O. Best Graphic Settings
2 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks 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)
