解读PHP函数explode()的具体使用方法
本帖最后由 灰儿 于 2010-5-17 15:12 编辑目前PHP语言算是相当火的一门高级语言。我们可以用它来创建一个高性能的网站等。今天我们为大家带来的是有关PHP函数explode()的具体用法,希望能对又需要的朋友有所帮助。 [*]PHP函数str_replace在字符串替换操作中..[*]PHP正则表达式preg_match的具体使用规则..[*]PHP函数trim()的定义与语法介绍[*]如何使用PHP函数sprintf()将字符串格式化[*]PHP函数preg_split的正确使用方法PHP函数explode()把字符串分割为数组
explode(separator,string,limit)
separator 必需。规定在哪里分割字符串。
string 必需。要分割的字符串。
limit 可选。规定所返回的数组元素的最大数目。
PHP函数explode()例子
<?php
$str = "Hello world. It's a beautiful day.";
print_r (explode(" ",$str));
?>
输出:
Array
(
=> Hello
=> world.
=> It's
=> a
=> beautiful
=> day.
)
以上代码示例就是PHP函数explode()的具体使用。
页:
[1]