VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php中利用explode函数分割字符串到数组

这篇文章主要介绍了php中利用explode函数分割字符串到数组,需要的朋友可以参考下

分割字符串 

利用 explode 函数分割字符串到数组,代码如下:

  1. <?php  
  2. $source = "hello1,hello2,hello3,hello4,hello5";//按逗号分离字符串  
  3. $hello = explode(',',$source);  
  4.  
  5. for($index=0;$index<count($hello);$index++)  
  6. {  
  7. echo $hello[$index];echo "</br>";  
  8. }  
  9. ?> 

split函数进行字符分割

分隔符可以是斜线,点,或横线,代码如下:

  1. <?php  
  2. $date = "04/30/1973";  
  3. list($month$day$year) = split ('[/.-]'$date);  
  4. echo "Month: $month; Day: $day; Year: $year<br />\n";  
  5. ?> 

通过数组实现多条件查询的代码,代码如下:

  1. $keyword="asp php,jsp"
  2. $keyword=str_replace("  "," ",$keyword); 
  3. $keyword=str_replace(" ",",",$keyword); 
  4. $keyarr=explode(',',$keyword);  
  5. for($index=0;$index<count($keyarr);$index++)  
  6. {  
  7. $whereSql .= " And (arc.title like '%$keyarr[$index]%' Or arc.keywords like '%$keyarr[$index]%') "
  8. }  
  9. echo $whereSql
  10.  

出处:http://www.phpfensi.com/php/20200907/13238.html


相关教程