有关php分割字符串的函数chunk_split与explode的用法,php分割字符串常用函数chunk_split,explode,以及str_split函数,需要的朋友参考下。
php分割字符串常用函数chunk_split,explode,以及str_split函数的用法。
一,php字符串分割函数 定义和用法
1、chunk_split() 函数把字符串分割为一连串更小的部分。
语法:chunk_split(string,length,end)
参数:string 必需,规定要分割的字符串。
参数:length 可选,一个数字,定义字符串块的长度。
参数:end 可选,字符串值,定义在每个字符串块之后放置的内容。
例子:
复制代码 代码示例:
*/
$data="hello world! this is a world!";//定义字符串
$new_string=chunk_split($data);//分割字符串
echo $new_string; //输出结果
/*
2、explode() 函数把字符串分割为数组。
语法:explode(separator,string,limit)
参数:separator 必需,规定在哪里分割字符串。
参数:string 必需,要分割的字符串。
参数:limit 可选,规定所返回的数组元素的最大数目。
例子:
复制代码 代码示例:
*/
$str='one|two|three|four'; //定义字符串
$result=explode('|',$str,2);//切开字符串
print_r($result); //输出结果
$result=explode('|',$str,-1);//以负数为返回个数
print_r($result); //输出结果
/*
3、str_split() 函数把字符串分割到数组中。
语法:str_split(string,length)
参数:string 必需,规定要分割的字符串。
参数:length 可选,规定每个数组元素的长度,默认是 1。
例子:
复制代码 代码示例:
$str="hello world"; //定义字符串
$result=str_split($str); //执行转换操作
print_r($result); //输出转换后的结果
$result=str_split($str,4); //每个元素定长为4
print_r($result); //输出转换后的结果