简单的PHP MYSQL PDO操作类 mysql.class.php
通过php pdo链接MYSQL数据库,进行简单的数据操作,我的网站[爱玩电脑 aowana.sinaapp.com],目前使用的就是这个类,如果该类更新会继续分享到oschina。
1. [代码]非常简单的PHP通过PDO操作MYSQL类 mysql.class.php
<?php /** * MySQL操作类 * http://www.php.cn/ * 日期:2015-04-01 */ class mysql { public $pdo = null; public $results = null; public function find($sql, $array=array()) { $ok = $this->process($sql, $array); if ($ok) { $this->results->setFetchMode(PDO::FETCH_ASSOC); $data = $this->results->fetch(); return $data; } else { return false; } } public function finds($sql, $array=array()) { $ok = $this->process($sql, $array); if ($ok) { $this->results->setFetchMode(PDO::FETCH_ASSOC); $data = $this->results->fetchAll(); return $data; } else { return array(); } } public function update($sql, $array=array()) { $ok = $this->process($sql, $array); if ($ok === false) return -1;//执行出错返回-1 else if ($ok) return $this->results->rowCount(); else return 0; } public function insert($sql, $array=array()) { $ok = $this->process($sql, $array); if ($ok) { $id = $this->pdo->lastInsertId(); $id = $id ? $id : 1; return $id; } else { return false; } } public function delete($sql, $array=array()) { $ok = $this->process($sql, $array); if ($ok === false) return -1;//执行出错返回-1 else if ($ok) return $this->results->rowCount(); else return 0; } public function query($sql, $array=array()) { return $this->process($sql, $array); } private function process($sql, $array) { if (is_null($this->pdo)) $this->connect(); $this->results = $this->pdo->prepare($sql); //print_r($this->pdo->errorInfo()); //print_r($this->results->errorInfo()); return $this->results->execute($array); } private function connect() { try { $this->pdo = new PDO('mysql:host=' . MYSQL_HOST . ';port=' . MYSQL_PORT . ';dbname=' . MYSQL_DATABASE . ';charset=utf8', MYSQL_USERNAME, MYSQL_PASSWORD); } catch (PDOException $error) { $html = $error->getMessage(); //SAE Mail to Master http503(); } } }
Copier après la connexion
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn

Outils d'IA chauds

Undresser.AI Undress
Application basée sur l'IA pour créer des photos de nu réalistes

AI Clothes Remover
Outil d'IA en ligne pour supprimer les vêtements des photos.

Undress AI Tool
Images de déshabillage gratuites

Clothoff.io
Dissolvant de vêtements AI

AI Hentai Generator
Générez AI Hentai gratuitement.

Article chaud
R.E.P.O. Crystals d'énergie expliqués et ce qu'ils font (cristal jaune)
2 Il y a quelques semaines
By 尊渡假赌尊渡假赌尊渡假赌
Combien de temps faut-il pour battre Split Fiction?
1 Il y a quelques mois
By DDD
R.E.P.O. Enregistrer l'emplacement du fichier: où est-il et comment le protéger?
1 Il y a quelques mois
By DDD
R.E.P.O. Meilleurs paramètres graphiques
2 Il y a quelques semaines
By 尊渡假赌尊渡假赌尊渡假赌
Assassin's Creed Shadows: Solution d'énigmes de coquille
1 Il y a quelques semaines
By DDD

Outils chauds

Bloc-notes++7.3.1
Éditeur de code facile à utiliser et gratuit

SublimeText3 version chinoise
Version chinoise, très simple à utiliser

Envoyer Studio 13.0.1
Puissant environnement de développement intégré PHP

Dreamweaver CS6
Outils de développement Web visuel

SublimeText3 version Mac
Logiciel d'édition de code au niveau de Dieu (SublimeText3)
