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

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

分割字符串

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

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

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;