PHP explode() 函数
PHP 教程
· 2019-01-29 12:59:15
实例
把字符串打散为数组:
$str = "www.codercto.com";
print_r (explode(".",$str));
定义和用法
explode() 函数使用一个字符串分割另一个字符串,并返回由字符串组成的数组。
注释:"separator" 参数不能是一个空字符串。
注释:该函数是二进制安全的。
语法
explode(separator,string,limit)
| 参数 | 描述 |
|---|---|
| separator | 必需。规定在哪里分割字符串。 |
| string | 必需。要分割的字符串。 |
| limit | 可选。规定所返回的数组元素的数目。 可能的值:
|
技术细节
| 返回值: | 返回字符串数组。 |
|---|---|
| PHP 版本: | 4+ |
| 更新日志: | 在 PHP 4.0.1 中,新增了 limit 参数。在 PHP 5.1.0 中,新增了对负数 limits 的支持。 |
更多实例
实例 1
使用 limit 参数来返回一些数组元素:
$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));
点击查看所有 PHP 教程 文章: https://codercto.com/courses/l/5.html
Data-intensive Text Processing With Mapreduce
Jimmy Lin、Chris Dyer / Morgan and Claypool Publishers / 2010-4-30 / USD 40.00
Our world is being revolutionized by data-driven methods: access to large amounts of data has generated new insights and opened exciting new opportunities in commerce, science, and computing applicati......一起来看看 《Data-intensive Text Processing With Mapreduce》 这本书的介绍吧!