Home Backend Development PHP Tutorial A PHP mysql operation class

A PHP mysql operation class

Jul 25, 2016 am 09:03 AM

  1. //Database operation class

  2. class db
  3. {
  4. //Data saving variables after SQL execution;
  5. var $db;
  6. //Read or set current data Position
  7. var $position=0;
  8. //Execute the SQL statement and save the result as a db variable;

  9. function sub_sql($str)

  10. {
  11. global $prefix;//Global Function, table prefix
  12. return str_replace("#@__",$prefix,$str);
  13. }
  14. function Sql($str)
  15. {
  16. $str=$this->sub_sql($str);
  17. $result = mysql_query($str);
  18. $i=0;
  19. while($row = mysql_fetch_array($result))
  20. {
  21. $str_array[$i]=$row;
  22. $i++;
  23. }
  24. if(empty($ str_array))
  25. {
  26. $str_array=array();
  27. }
  28. $this->db=$str_array;
  29. }
  30. //Read a piece of data and move the data back one bit, and return if the data is empty is null;
  31. function Get_One()
  32. {
  33. $re=empty($this->db[$this->position])?null:$this->db[$this->position];
  34. $this->position=$re?$this->position+1:$this->position;
  35. return $re;
  36. }
  37. //Judge whether the data has been read to the end
  38. function Judge()
  39. {
  40. $re=empty($this->db[$this->position])?true:false;
  41. return $re;
  42. }
  43. //Get the number in db
  44. function Get_Num()
  45. {
  46. return count($this->db);
  47. }
  48. //Update the data in the database, $t is the table name, $v format is the array format, the superscript is the field name, and the subscript is the data; $w is The superscript of the condition is the field name and the subscript is the data. $p is the condition. 0 is the equal sign, 1 is greater than, -1 is less than;
  49. function Set_Updata($t,$v,$w,$p=0)
  50. {
  51. $this->Sql($t);
  52. $v_str="";
  53. $w_str="";
  54. $f="";
  55. foreach($v as $key=>$vaule)
  56. {
  57. if (!is_numeric($key))
  58. {
  59. if(empty($v_str))
  60. {
  61. $v_str=htmlspecialchars($key)."='".htmlspecialchars($vaule)."'";
  62. }else
  63. {
  64. $v_str=$v_str.",".htmlspecialchars($key)."='".htmlspecialchars($vaule)."'";
  65. }
  66. }
  67. }
  68. switch($p)
  69. {
  70. case 0 :
  71. $f="=";
  72. break;
  73. case 1:
  74. $f=">";
  75. break;
  76. case -1:
  77. $f="<";
  78. break;
  79. }
  80. if( !empty($f))
  81. {
  82. foreach($w as $key=>$vaule)
  83. {
  84. if(!is_numeric($key))
  85. {
  86. if(empty($v_str))
  87. {
  88. $ w_str=htmlspecialchars($key).$f.htmlspecialchars($vaule)."'";
  89. }else
  90. {
  91. $w_str=$w_str.",".htmlspecialchars($key).$f.htmlspecialchars($vaule )."'";
  92. }
  93. }
  94. }
  95. }
  96. $sql="UPDATE ".$t." SET ".$v_str." where ".$w_str;
  97. return $result = mysql_query($sql);
  98. }
  99. //Delete a piece of data. $w is the condition. The superscript is the field name and the subscript is the data. $p is the condition. 0 is the equal sign, 1 is greater than, -1 is less than;
  100. function Set_Del($t,$w, $p=0)
  101. {
  102. $this->sub_sql($t);
  103. $w_str="";
  104. $f="";
  105. switch($p)
  106. {
  107. case 0:
  108. $f=" =";
  109. break;
  110. case 1:
  111. $f=">";
  112. break;
  113. case -1:
  114. $f="<";
  115. break;
  116. }
  117. if(!empty($f) )
  118. {
  119. foreach($w as $key=>$vaule)
  120. {
  121. if(!is_numeric($key))
  122. {
  123. if(empty($v_str))
  124. {
  125. $w_str=htmlspecialchars($key ).$f.htmlspecialchars($vaule)."'";
  126. }else
  127. {
  128. $w_str=$w_str.",".htmlspecialchars($key).$f.htmlspecialchars($vaule)."'";
  129. }
  130. }
  131. }
  132. }
  133. $str="DELETE FROM ".$t." WHERE ".$w_str;
  134. return $result = mysql_query($str);
  135. }
  136. function Add($t,$v)
  137. {
  138. $this->sub_sql($t);
  139. $k_str="";
  140. $v_str="";
  141. foreach($v as $key=>$vaule)
  142. {
  143. if(!is_numeric($key)){
  144. if(empty($k_str))
  145. {
  146. $k_str=htmlspecialchars($key);
  147. $v_str="'".htmlspecialchars($vaule)."'";
  148. }else
  149. {
  150. $k_str=$k_str.",".htmlspecialchars($key);
  151. $v_str=$v_str.","."'".htmlspecialchars($vaule)."'";
  152. }
  153. }
  154. }
  155. $str="INSERT INTO ".$t."(".$k_str.")"."value(".$v_str.")";
  156. return $result = mysql_query($str);
  157. }
  158. }
  159. ?>

复制代码


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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 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 APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 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 Tests Simplified HTTP Response Mocking in Laravel Tests Mar 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 CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 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

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 Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 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

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 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:

See all articles