search
HomeBackend DevelopmentPHP TutorialA database operation PHP class

  1. /*
  2. * Author Molong
  3. * Time December 2, 2010 15:50:35
  4. */
  5. $db = new mysql($db_host,$db_user,$db_password, $db_table,$db_conn,$pre,$coding);
  6. class mysql{
  7. private $db_host;
  8. private $db_user;
  9. private $db_password;
  10. private $db_table;
  11. private $db_conn; //Database connection identification;
  12. private $result; //Result resource identification of executing query command
  13. private $sql; //SQL execution statement
  14. private $pre; //Database table prefix
  15. private $coding; //Database encoding, GBK, UTF8, gb2312
  16. function __construct($db_host,$db_user,$db_password,$db_table,$db_conn,$pre,$coding){
  17. $this->db_host = $db_host;
  18. $this->db_user = $db_user;
  19. $this->db_password = $db_password;
  20. $this->db_table = $db_table;
  21. $this->db_conn = $db_conn;
  22. $this->pre = $pre;
  23. $this->coding = $coding;
  24. $this->connect();
  25. }
  26. function connect(){
  27. $this->db_conn = @mysql_connect($this->db_host,$this->db_user, $this->db_password) or die($this->show_error("Database link error, please check the database link configuration! "));
  28. if(!mysql_select_db($this->db_table,$this->db_conn)){
  29. echo "Data table not found: ".$this->db_table;
  30. }
  31. mysql_select_db($ this->db_table,$this->db_conn);
  32. $this->query("SET NAMES $this->coding");
  33. }
  34. /*Function to execute SQL statements*/
  35. function query ($sql){
  36. if(emptyempty($sql)){
  37. $this->show_error("Your sql statement cannot be empty!");
  38. }else{
  39. $this->sql = $sql;
  40. }
  41. $result = mysql_query($this->sql,$this->db_conn);
  42. return $this->result = $result;
  43. }
  44. /*Create and add a new database*/
  45. public function create_database($database_name){
  46. $database=$database_name;
  47. $sqlDatabase = 'create database '.$database;
  48. return $this- >query($sqlDatabase);
  49. }
  50. // Calculate the number of result set items based on the select query results
  51. public function db_num_rows(){
  52. if($this->result==null){
  53. if($this- >show_error){
  54. $this->show_error("sql statement error!");
  55. }
  56. }else{
  57. return mysql_num_rows($this->result);
  58. }
  59. }
  60. /*Query all server Database*/
  61. //Separate the system database and the user database for a more intuitive display?
  62. public function show_databases(){
  63. $this->query("show databases");
  64. echo "Existing database:".$ amount =$this->db_num_rows($rs);
  65. echo "
    ";
  66. $i=1;
  67. while($row = $this->fetch_array($rs)){
  68. echo "$i $row[Database]";
  69. echo "
    ";
  70. $i++;
  71. }
  72. }
  73. //Return all database names in the host in array form
  74. public function databases()
  75. {
  76. $rsPtr=mysql_list_dbs($this->db_conn);
  77. $i=0;
  78. $cnt=mysql_num_rows($rsPtr);
  79. while($i {
  80. $rs[]=mysql_db_name($ rsPtr,$i);
  81. $i++;
  82. }
  83. return print_r($rs);
  84. }
  85. /*Query all tables under the database*/
  86. function show_tables($database_name){
  87. $this->query( "show tables");
  88. echo "Existing database:".$amount = $this->db_num_rows($rs);
  89. echo "
    ";
  90. $i=1;
  91. while($ row = $this->fetch_array($rs)){
  92. $columnName="Tables_in_".$database_name;
  93. echo "$i $row[$columnName]";
  94. echo "
    ";
  95. $i++;
  96. }
  97. }
  98. /*
  99. mysql_fetch_row() array $row[0],$row[1],$row[2]
  100. mysql_fetch_array() array $row[0] or $row[id]
  101. mysql_fetch_assoc() array uses $row->content field case sensitivity
  102. mysql_fetch_object() object uses $row[id],$row[content] fields case sensitivity
  103. */
  104. /*Get the record set, get the array-index and association, use $row['content'] */
  105. public function fetch_array()
  106. {
  107. return @mysql_fetch_array($this->result);
  108. }
  109. //Get the association array, use $row[' field name']
  110. public function fetch_ass()
  111. {
  112. return @mysql_fetch_assoc($this->result);
  113. }
  114. //Get the numeric index array, use $row[0],$row[1],$row [2]
  115. public function fetch_row()
  116. {
  117. return @mysql_fetch_row($this->result);
  118. }
  119. //Get the object array, use $row->content
  120. public function fetch_Object()
  121. {
  122. return @mysql_fetch_object($this->result);
  123. }
  124. //Simplified query select
  125. public function findall($table){
  126. $table = $this->fulltablename($table);
  127. $this-> ;query("select * from $table");
  128. }
  129. public function select($table,$columnName,$condition){
  130. $table = $this->fulltablename($table);
  131. if(emptyempty( $columnName)){
  132. $columnName = "*";
  133. }
  134. $this->query("SELECT $columnName FROM $table $condition");
  135. }
  136. //Simplified insert
  137. function insert($table ,$arr){
  138. $table = $this->fulltablename($table);
  139. $sql = "INSERT INTO $table ";
  140. if(!is_array($arr)){
  141. $this->show_error( "Please enter the parameter array!");
  142. }else{
  143. $k = "";
  144. $v = "";
  145. foreach($arr as $key => $value){
  146. $k .= "`$key`,";
  147. $v .= "'".$value."',";
  148. }
  149. }
  150. $sql = $sql." (".substr($k,0,-1).") VALUES (".substr($v,0,-1).")";
  151. $this->query($sql);
  152. }
  153. //简化的update
  154. function update($table,$arr,$where){
  155. $table = $this->fulltablename($table);
  156. $sql = "UPDATE $table SET ";
  157. if(!is_array($arr)){
  158. $this->show_error("请输入参数数组!");
  159. }else{
  160. foreach($arr as $key => $value){
  161. $sql .= " `".$key."` = '".$value."' ,";
  162. }
  163. }
  164. $sql = substr($sql,0,-1)." where ".$where;
  165. return $this->query($sql);
  166. }
  167. //Simplified delete
  168. function delete($ table,$where = ""){
  169. $table = $this->fulltablename($table);
  170. if(emptyempty($where)){
  171. $this->show_error("Condition cannot be empty!") ;
  172. }else{
  173. $where = " where ".$where;
  174. }
  175. $sql = "DELETE FROM $table ".$where;
  176. //echo $sql;
  177. return $this->query($sql );
  178. }
  179. //Get the ID generated by the previous INSERT operation
  180. public function insert_id(){
  181. return mysql_insert_id();
  182. }
  183. //Prefixed data table
  184. public function fulltablename($table){
  185. return $table = $this->pre.$table;
  186. }
  187. //Query the number of fields
  188. public function num_fields($table){
  189. $table = $this->fulltablename($table);
  190. $ this->query("select * from $table");
  191. echo "
    ";
  192. echo "Number of fields: ".$total = mysql_num_fields($this->result);
  193. echo "
    "; 
  194. for ($i=0; $i print_r(mysql_fetch_field($this->result,$i) );
  195. }
  196. echo "> ;";
  197. echo "
    ";
  198. }
  199. //Get MySQL server information
  200. public function mysql_server($num=''){
  201. switch ($num){
  202. case 1:
  203. return mysql_get_server_info (); //MySQL server information
  204. break;
  205. case 2 :
  206. return mysql_get_host_info(); //Get MySQL host information
  207. break;
  208. case 3 :
  209. return mysql_get_client_info(); //Get MySQL client information
  210. break;
  211. case 4:
  212. return mysql_get_proto_info(); //Get MySQL protocol information
  213. break;
  214. default:
  215. return mysql_get_client_info(); //Get mysql version information by default
  216. }
  217. }
  218. //Destructor , automatically close the database, garbage collection mechanism
  219. /*public function __destruct()
  220. {
  221. if(!empty($this->result)){
  222. $this->free();
  223. }
  224. mysql_close($this ->$db_conn);
  225. }*/
  226. /*Get the real IP address of the client*/
  227. function getip(){
  228. if(getenv("HTTP_CLIENT_IP") && strcasecmp(getenv("HTTP_CLIENT_IP"), " unknown"))
  229. {
  230. $ip = getenv("HTTP_CLIENT_IP");
  231. }
  232. else if (getenv("HTTP_X_FORWARDED_FOR") && strcasecmp(getenv("HTTP_X_FORWARDED_FOR"), "unknown")){
  233. $ip = getenv ("HTTP_X_FORWARDED_FOR");
  234. }
  235. else if (getenv("REMOTE_ADDR") && strcasecmp(getenv("REMOTE_ADDR"), "unknown"))
  236. {
  237. $ip = getenv("REMOTE_ADDR");
  238. }
  239. else if (isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] && strcasecmp($_SERVER['REMOTE_ADDR'], "unknown")){
  240. $ip = $_SERVER['REMOTE_ADDR'];
  241. }
  242. else{
  243. $ip = "unknown";
  244. }
  245. return($ip);
  246. }
  247. function show_error($str){
  248. echo "";
  249. }
  250. }
  251. ?>
Copy code

PHP


Statement
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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

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-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

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.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

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' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

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

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

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:

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

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

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

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

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

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

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft