<?php $temp='abcdefg'; //要[遍历](http://zhidao.baidu.com/search?word=%E9%81%8D%E5%8E%86&fr=qb_search_exp&ie=utf8)的字符串 $re=array(); //定义接受字符串的数组 for($i=0;$i<strlen($temp);$i++) { $re[]=substr($temp,$i,1); //将单个字符存到数组当中 echo $re[$i],','; } ?>