PHP explode() 字符串转换数组

在php中要把字符串转换数组的方式有很多种,我们如果有规律性的可直接使用explode()函数来把字符串截成数组.

定义和用法:explode() 函数把字符串分割为数组。

语法:explode(separator,string,limit)

例子,在本例中,我们将把字符串分割为数组,代码如下:

  1. <?php
  2. $str = "Hello world. It's a beautiful day.";
  3. print_r (explode(" ",$str));
  4. //开源软件:phpfensi.com
  5. ?>
  6. //输出:
  7. Array
  8. (
  9. [0] => Hello
  10. [1] => world.
  11. [2] => It's
  12. [3] => a
  13. [4] => beautiful
  14. [5] => day.
  15. )

这样我们的字符就根据我们的设定就转换成了数组了.