php通过数组实现多条件查询(字符串分割)的解决办法
内容摘要
这篇文章主要为大家详细介绍了php通过数组实现多条件查询(字符串分割)的简单示例,具有一定的参考价值,可以用来参考一下。
文章正文
这篇文章主要为大家详细介绍了php通过数组实现多条件查询(字符串分割)的简单示例,具有一定的参考价值,可以用来参考一下。
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 | <code class = "language-php" ><?php /* php教程 www.512Pic.com */ $keyword = "asp php,jsp" ; $keyword = str_replace ( " " , " " , $keyword ); $keyword = str_replace ( " " , "," , $keyword ); $keyarr = explode ( ',' , $keyword ); for ( $index =0; $index < count ( $keyarr ); $index ++) { $whereSql .= " And (arc.title like '%$keyarr[$index]%' Or arc.keywords like '%$keyarr[$index]%') " ; } echo $whereSql ; </code> |
注:关于php通过数组实现多条件查询(字符串分割)的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释