在php中要分割字符串常用的有二个函数,chunk_split,explode还有一个str_split函数,这个三了,下面看实例。
定义和用法
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;
- /*
定义和用法
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);
- /*
定义和用法
str_split() 函数把字符串分割到数组中。
语法:str_split(string,length)
参数:string 必需,规定要分割的字符串。
参数:length 可选,规定每个数组元素的长度,默认是 1。
- $str="hello world";
- $result=str_split($str);
- print_r($result);
- $result=str_split($str,4);
- print_r($result);
|