利用explode() 函数分隔字符

explode()函数本函数为 implode() 的反函数,使用一个字符串分割另一个字符串,返回一个数组。语法:codearray explode( string separator, string string [, int limit] )参数说明:separator 分割标

[时间:08-29]    [浏览:]    [放入收藏夹]    [查看详情]

explode()函数

本函数为 implode() 的反函数,使用一个字符串分割另一个字符串,返回一个数组。

语法:

codearray explode( string separator, string string [, int limit] )

参数说明:

separator    分割标志    

string    需要分割的字符串    

limit    可选,表示返回的数组包含最多 limit 个元素,而最后那个元素将包含 string 的剩余部分,支持负数。    

实战案列代码

<?php$str = 'one|two|three|four';print_r(explode('|', $str));print_r(explode('|', $str, 2));// 负数的 limit(自 PHP 5.1 起)print_r(explode('|', $str, -1));?>

输出结果如下:

codeArray([0] => one[1] => two[2] => three[3] => four)Array([0] => one[1] => two|three|four)Array([0] => one[1] => two[2] => three)


  本文转载自:精准像素:11px.cn ,感谢作者分享实用知识


标签: