php指定长度分割字符串str_split函数用法示例

前端之家收集整理的这篇文章主要介绍了php指定长度分割字符串str_split函数用法示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了PHP指定长度分割字符串str_split函数用法分享给大家供大家参考,具体如下:

示例1:

PHP;"> $str = 'abcdefgh'; $arr = str_split($str,2);

运行结果如下:

string(2) "ab" [1]=> string(2) "cd" [2]=> string(2) "ef" [3]=> string(2) "gh" }

示例2:

PHP;"> $str = 'abcdefgh'; $arr = str_split($str); $i = 0; $limit = 3; $num = count($arr); while($i <= $num-1){ $temp = array(); $for_countbu = ($num-$i) >= $limit ? $limit : $num - $i; for($j = 0; $j < $for_countbu; ++$j) { $temp[] = $arr[$i]; ++$i; } $one = implode('',$temp); $result[] = $one; } print_r($result);

运行结果如下:

string(2) "ab" [1]=> string(2) "cd" [2]=> string(2) "ef" [3]=> string(2) "gh" }

更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》及《PHP常见数据库操作技巧汇总》

希望本文所述对大家PHP程序设计有所帮助。

原文链接:https://www.f2er.com/php/18069.html

猜你在找的PHP相关文章