当前位置:Gxlcms > PHP教程 > php中利用explode()函数分割字符串到数组示例代码

php中利用explode()函数分割字符串到数组示例代码

时间:2021-07-01 10:21:17 帮助过:10人阅读

这篇文章主要介绍了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. <?php
  2. $keyword="asp php,jsp";
  3. $keyword=str_replace(" "," ",$keyword);
  4. $keyword=str_replace(" ",",",$keyword);
  5. $keyarr=explode(',',$keyword);
  6. for($index=0;$index<count($keyarr);$index++)
  7. {
  8. $whereSql .= " And (arc.title like '%$keyarr[$index]%' Or arc.keywords like '%$keyarr[$index]%') ";
  9. }
  10. echo $whereSql;

以上就是php中利用explode()函数分割字符串到数组示例代码的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行