PHP+Mysql实现多关键字与多字段生成SQL语句的函数

这篇文章主要介绍了PHP+Mysql实现多关键字与多字段生成SQL语句的函数,涉及字符串与数组的操作,是构造SQL语句非常实用的技巧,需要的朋友可以参考下

本文实例讲述了PHP+Mysql实现多关键字与多字段生成SQL语句的函数的方法。分享给大家供大家参考。具体实现方法如下:

先看实例:

  1. $keyword="1 2 3";
  2. echo $sql=search($keyword,"enter_gongyin_pic","a+b+c"); //函数生成,没有LIMIT,没有ORDER BY

生成:

SELECT * FROM `enter_gongyin_pic` WHERE `a` LIKE '%1%' OR `a` LIKE '%2%' OR `a` LIKE '%3%' OR `b` LIKE '%1%' OR `b` LIKE '%2%' OR `b` LIKE '%3%' OR `c` LIKE '%1%' OR `c` LIKE '%2%' OR `c` LIKE '%3%'

$keyword由POST或者GET获得.按空格分开 可以多字段去查找.

实现函数如下:

  1. function search($keyword,$table,$field)
  2. {
  3. //========================================================
  4. //形参说明:
  5. //keyword为关键字,如“北京首都 方向 火车”。带有空格或者不带
  6. //table为表名,如enter_gongyin_pic。
  7. //field为字段组合,如查找一个字段就写好 name
  8. //如查找两个以上就用 name+picdir
  9. //========================================================
  10. //首先确定field
  11. $new_field=explode("+",$field); //按+剥离
  12. $field_count=count($new_field); //得到的结果数量
  13. $newstring=explode(" ",$keyword); //按空格剥离
  14. $newstring2=array();
  15. //把字符串去掉没有用的空格叔祖元素
  16. $i=0;
  17. foreach ($newstring as $key => $value) {
  18. if($value!="")
  19. {
  20. $newstring2[$i]=$value;
  21. $i++;
  22. }
  23. }
  24. //把字符串去掉没有用的空格叔祖元素,
  25. $result_count=count($newstring2); //得到的结果数量
  26. //下面生成SQL语句
  27. //********************** if($field_count==1) //找1个字段 START ****************************
  28. if($field_count==1) //找1个字段
  29. {
  30. if($result_count==1) //判断如果是一个关键段
  31. {
  32. $newstring_search=$newstring2[0];
  33. $sql="SELECT *
  34. FROM `$table`
  35. WHERE `".$new_field[0]."` LIKE '%$newstring_search%'";
  36. }
  37. if($result_count>1) //判断如果是多个关键段
  38. {
  39. $sql="SELECT *
  40. FROM `$table`
  41. WHERE ";
  42. $sql_add="";
  43. foreach ($newstring2 as $key => $value)
  44. {
  45. if($key==0)
  46. {
  47. $sql_add=$sql_add."`".$new_field[0]."` LIKE '%".$value."%'";
  48. }
  49. else
  50. {
  51. $sql_add=$sql_add." OR `".$new_field[0]."` LIKE '%".$value."%'";
  52. }
  53. }
  54. $sql=$sql.$sql_add;
  55. }
  56. }
  57. //********************** if($field_count==1) //找1个字段 END ****************************
  58. //********************** if($field_count>1) //找多个字段 START ****************************
  59. if($field_count>1) //找多个字段,这个时候$new_field是一个数组。拥有多个字段
  60. {
  61. if($result_count==1) //判断如果是一个关键段
  62. {
  63. $newstring_search=$newstring2[0]; //$newstring_search是关键字
  64. $sql="SELECT *
  65. FROM `$table`
  66. WHERE ";
  67. $sql_add="";//新增加字段
  68. foreach ($new_field as $key => $value)
  69. {
  70. if($key==0)
  71. {
  72. $sql_add=$sql_add."`".$value."` LIKE '%".$newstring_search."%'";
  73. }
  74. else
  75. {
  76. $sql_add=$sql_add." OR `".$value."` LIKE '%".$newstring_search."%'";
  77. }
  78. }
  79. $sql=$sql.$sql_add;
  80. }
  81. if($result_count>1) //判断如果是多个关键段(多个关键字)==========================
  82. {
  83. $sql="SELECT *
  84. FROM `$table`
  85. WHERE ";
  86. $sql_add="";//新增加字段
  87. foreach ($new_field as $key => $value)
  88. {
  89. if($key==0) //遇到$new_field[0]时候 例:`a` LIKE '%1%' OR `a` LIKE '%2%' OR `a` LIKE '%3%'
  90. { //嵌套foreach
  91. foreach ($newstring2 as $key2 => $value2)
  92. {
  93. if($key2==0)
  94. {
  95. $sql_add=$sql_add."`".$value."` LIKE '%".$value2."%'";
  96. }
  97. else
  98. {
  99. $sql_add=$sql_add." OR `".$value."` LIKE '%".$value2."%'";
  100. }
  101. }
  102. //嵌套foreach
  103. }
  104. else
  105. //(如果是多字段的比如查name+picdir表)开始FOREACH连续循环,每次执行ELSE $new_field[1] $new_field[2] $new_field[3]。
  106. //对应的值为$value
  107. {
  108. //嵌套foreach(多字段与多关键字)
  109. foreach ($newstring2 as $key2 => $value2)
  110. {
  111. if($key2==0)
  112. {
  113. $sql_add=$sql_add." OR `".$value."` LIKE '%".$value2."%'";
  114. }
  115. else
  116. {
  117. $sql_add=$sql_add." OR `".$value."` LIKE '%".$value2."%'";
  118. }
  119. }
  120. //嵌套foreach
  121. }
  122. //www.phpfensi.com
  123. }//foreach ($new_field as $key => $value)结束
  124. $sql=$sql.$sql_add;
  125. }//if($result_count>1)结束
  126. }//if($field_count>1) 结束
  127. //********************** if($field_count>1) //找多个字段 END ****************************
  128. return $sql;
  129. }

希望本文所述对大家的PHP程序设计有所帮助。