PHP explode() 函数

实例

把字符串打散为数组:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $str = "Hello world. 我爱成都!";
  6. print_r (explode(" ",$str));
  7. ?>
  8. </body>
  9. </html>

定义和用法

explode() 函数把字符串打散为数组。

注释:"separator" 参数不能是空字符串。

注释:该函数是二进制安全的。


语法

  1. explode(separator,string,limit)
参数描述
separator必需。规定在哪里分割字符串。
string必需。要分割的字符串。
limit

可选。规定所返回的数组元素的数目。

可能的值:

  • 大于 0 - 返回包含最多 limit 个元素的数组
  • 小于 0 - 返回包含除了最后的 -limit 个元素以外的所有元素的数组
  • 0 - 返回包含一个元素的数组

技术细节

返回值:返回字符串的数组
PHP 版本:4+
更新日志:在 PHP 4.0.1 中,新增了 limit 参数。在 PHP 5.1.0 中,新增了对负数 limit 的支持。

更多实例

例子 1

使用 limit 参数来返回一些数组元素:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $str = 'one,two,three,four';
  6. // 零 limit
  7. print_r(explode(',',$str,0));
  8. // 正的 limit
  9. print_r(explode(',',$str,2));
  10. // 负的 limit
  11. print_r(explode(',',$str,-1));
  12. ?>
  13. </body>
  14. </html>

分类导航