explode()函数,把字符串分割成数组
$str = "Hello world. It a beautiful day";
$arr = explode(" ", $str);
print_r($arr);
array(
[0]=>Hello
[1]=>world.
[2]=>It
[3]=>a
[4]=>beautiful
[5]=>day.
)
explode()函数,把字符串分割成数组
$str = "Hello world. It a beautiful day";
$arr = explode(" ", $str);
print_r($arr);
array(
[0]=>Hello
[1]=>world.
[2]=>It
[3]=>a
[4]=>beautiful
[5]=>day.
)