方法一:函数:
str_split() 函数
str_split() 函数把字符串分割到数组中。
eg:
- <?php
- print_r(str_split("Hello",3));
- ?>
- Array
- (
- [0] => Hel
- [1] => lo
- )
方法二:for 循环
- <?php
- $num="1234567890";
- $strlen=strlen($num);
- $newnum="";
- for ($i = 0; $i < $strlen; $i++) {
- $newnum.="<span style='color:#FF0000'>".substr($num,$i,1)."</span>";
- }
- echo $newnum;
- ?>
结果:1234567890
本文转自许琴 51CTO博客,原文链接:http://blog.51cto.com/xuqin/925532,如需转载请自行联系原作者