当前位置:首页 > PHP教程 > php函数 > 列表

php中利用explode函数分割字符串到数组

发布:smiling 来源: PHP粉丝网  添加日期:2020-09-07 17:06:28 浏览: 评论:0 

这篇文章主要介绍了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

Tags: explode

分享到: