php explode()函数 语法
作用:把字符串打散为数组
语法:explode(separator,string,limit)大理石机械构件
参数:
参数 | 描述 |
separator | 必需。规定在哪里分割字符串。 |
string | 必需。要分割的字符串。 |
limit | 可选。规定所返回的数组元素的数目。可能的值:大于 0 - 返回包含最多 limit 个元素的数组,小于 0 - 返回包含除了最后的 -limit 个元素以外的所有元素的数组,0 - 返回包含一个元素的数组 |
说明:把字符串打散为数组。"separator" 参数不能是空字符串。该函数是二进制安全的。
php explode()函数 示例
<?php
$str = "Hello world. I'm study in php.cn!";
print_r (explode(".",$str));
?>
输出:
Array ( [0] => Hello world [1] => I'm study in php [2] => cn! )