php分割字符串函数

在php中要分割字符串常用的有二个函数,chunk_split,explode还有一个str_split函数,这个三了,下面看实例。

定义和用法

chunk_split() 函数把字符串分割为一连串更小的部分。

语法:chunk_split(string,length,end)

参数:string 必需,规定要分割的字符串。

参数:length 可选,一个数字,定义字符串块的长度。

参数:end 可选,字符串值,定义在每个字符串块之后放置的内容。

  1. */
  2. $data="hello world! this is a world!"; //定义字符串
  3. $new_string=chunk_split($data); //分割字符串
  4. echo $new_string; //输出结果
  5. /*

定义和用法

explode() 函数把字符串分割为数组。

语法:explode(separator,string,limit)

参数:separator 必需,规定在哪里分割字符串。

参数:string 必需,要分割的字符串。

参数:limit 可选,规定所返回的数组元素的最大数目。

  1. */
  2. $str='one|two|three|four'; //定义字符串
  3. $result=explode('|',$str,2); //切开字符串
  4. print_r($result); //输出结果
  5. $result=explode('|',$str,-1); //以负数为返回个数
  6. print_r($result); //输出结果
  7. /*

定义和用法

str_split() 函数把字符串分割到数组中。

语法:str_split(string,length)

参数:string 必需,规定要分割的字符串。

参数:length 可选,规定每个数组元素的长度,默认是 1。

  1. $str="hello world"; //定义字符串
  2. $result=str_split($str); //执行转换操作
  3. print_r($result); //输出转换后的结果
  4. $result=str_split($str,4); //每个元素定长为4
  5. print_r($result); //输出转换后的结果