php字符串的有序拆分的相关内容在php中很重要,本篇将介绍php字符串的有序拆分的相关操作。
这里讲这几个函数
chunk_split() :函数把字符串分割为一连串更小的部分。
explode():使用一个字符串分割另一个字符串
str_split():将字符串分割到数组中
chunk_split()
chunk_split(string,length,end)
参数 描述
string 必需。规定要分割的字符串。
length 可选。数字值,定义字符串块的长度。默认是 76。
end 可选。字符串值,定义在每个字符串块末端放置的内容。默认是 \r\n。
<!--?php $str = "Shanghai"; echo chunk_split($str,1,"."); ?-->
输入结果:S.h.a.n.g.h.a.i.
explode()
本函数为 implode() 的反函数,使用一个字符串分割另一个字符串,返回一个数组。
array explode( string separator, string string [, int limit] )
<!--?php $str = 'one|two|three|four'; print_r(explode('|', $str)); print_r(explode('|', $str, 2)); // 负数的 limit(自 PHP 5.1 起) print_r(explode('|', $str, -1)); ?-->
输出结果如下:
Array ( [0] => one [1] => two [2] => three [3] => four ) Array ( [0] => one [1] => two|three|four ) Array ( [0] => one [1] => two [2] => three ) str_split() str_split() 将字符串分割为一个数组,成功返回一个数组。 array str_split( string string [, int length] )
参数 说明
string 需要分割的字符串
length 可选,表示每个分割单位的长度,不可小于1
例子:
<!--?php $str = 'one two three'; $arr1 = str_split($str); $arr2 = str_split($str, 3); print_r($arr1); print_r($arr2); ?-->
输出结果如下:
Array ( [0] => o [1] => n [2] => e [3] => [4] => t [5] => w [6] => o [7] => [8] => t [9] => h [10] => r [11] => e [12] => e ) Array ( [0] => one [1] => tw [2] => o t [3] => hre [4] => e )
本篇讲解了php字符串的有序拆分的相关操作,更多相关内容请关注php中文网。
相关推荐:
Atas ialah kandungan terperinci 讲解php字符串的有序拆分的相关操作. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!