利用explode() 函数分隔字符

利用explode() 函数分隔字符
                     第一张

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)

本文结束

发表评论

登录... 评论区已永久关闭~