将字符串分解为数组:
<?php
$str = "Hello world. It's a beautiful day.";
print_r (explode(" ",$str));
?>
亲自试一试 »
explode() 函数将字符串分解为数组。
笔记:"separator" 参数不能为空字符串。
笔记:该函数是二进制安全的。
explode(
separator,string,limit)
Parameter | Description |
---|---|
separator | Required. Specifies where to break the string |
string | Required. The string to split |
limit | Optional. Specifies the number of array elements to return. Possible values:
|
返回值: | 返回一个字符串数组 |
---|---|
PHP 版本: | 4+ |
变更日志: | 这个限制PHP 4.0.1 新增参数,支持负数限制PHP 5.1.0 中添加 |
使用 limit 参数返回数组元素的数量:
<?php
$str = 'one,two,three,four';
// zero limit
print_r(explode(',',$str,0));
// positive limit
print_r(explode(',',$str,2));
// negative limit
print_r(explode(',',$str,-1));
?>
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!