其他分享
首页 > 其他分享> > explode() 把字符串打散为数组

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

作者:互联网

实例

把字符串打散为数组:

<?php $str = "www.runoob.com"; print_r (explode(".",$str)); ?>
输出

Array
(
[0] => www
[1] => runoob
[2] => com
)

<?php
$str = 'one,two,three,four';
 
//  返回包含一个元素的数组
print_r(explode(',',$str,0));
print "<br>";
 
// 数组元素为 2
print_r(explode(',',$str,2));
print "<br>";
 
// 删除最后一个数组元素
print_r(explode(',',$str,-1));
?>

输出
Array
(
    [0] => one,two,three,four
)

Array
(
    [0] => one
    [1] => two,three,four
)

Array
(
    [0] => one
    [1] => two
    [2] => three
)

定义和用法

explode() 函数使用一个字符串分割另一个字符串,并返回由字符串组成的数组。

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

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


语法

explode(separator,string,limit)

参数描述
separator必需。规定在哪里分割字符串。
string必需。要分割的字符串。
limit可选。规定所返回的数组元素的数目。

可能的值:

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

标签:元素,explode,字符串,limit,数组,打散,Array
来源: https://blog.csdn.net/xu776061375/article/details/117957134