[我在学php之三]Po上自己写的数据库类,方便以后进行查找。
class mysql{ private $conn; //私有化 变量$conn private $db_host; //主机 private $db_user; private $db_password; private $db_name; //数据库名称 function __construct($db_host,$db_user,$db_password,$db_name){ //构造函数,传入 类中的connect函数中 $this->db_host = $db_host; $this->db_user = $db_user; $this->db_password = $db_password; $this->db_name = $db_name; $this->connect(); } function connect(){ //数据库连接函数 $this->conn = mysql_connect($this->db_host,$this->db_user,$this->db_password) or die("数据库连接失败".mysql_errno().":".mysql_error()); mysql_select_db($this->db_name,$this->conn) or die('打开数据库失败').mysql_error(); mysql_set_charset('utf8'); return $this->conn; } //插入数据库,$table(数据库名称),$array function insert($table,$array){ $keys = "`".implode("`,`", array_keys($array))."`"; //调取数组中的键值 $vals = "'".implode("','", array_values($array))."'"; //调去数组中的数值 $sql = "insert into {$table} ({$keys}) values({$vals})"; $query = mysql_query($sql); return mysql_insert_id(); } //删除指定数据 function delete($table,$id,$where=null){ //语句: delete from table where id = .... $where = $where ==null?null:'where '.$where; $sql = "delete from {$table} where id = {$id} limit 1"; $query = mysql_query($sql); return $query; } //选择数据库 public function select($table,$array,$where=null){ //语句: select * from table where `user`='$user'...... foreach ($array as $key => $value) { $select[] = '`'.$key.'`='.$value; } $select = implode(' and ', $select); $where = $where == null?null:$where; $sql = "select * from {$table} where ".$select.' '.$where; return $sql; } //修改数据库 function update($table,$array,$where = null){ //语句: update table set `name`='kopa' where id = .... foreach ($array as $key => $value) { $string[] = '`'.$key.'`='.$value; } $string =implode('`,',$string); $where = $where==null?null:" where ".$where; $sql = "update {$table} set ".$string.$where; return $sql; // $query = mysql_query($sql); // return $query; // print_r("update {$table} set ".$string.$where); } //读取数据库总行数 mysql_num_row function totalRow($sql){ $query = mysql_query($sql); $result = mysql_num_rows($query); return $result; } //读取数据库的数组 function fetch_array($sql){ $query = mysql_query($sql); $res = mysql_fetch_array($query); return $res; }}$db = new mysql("localhost",'root','3363064','ctxy');

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

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove
