案例:php案例     状态:不可编辑再运行    进入竖版
 运行结果 
x
 
1
2
3
4
<!DOCTYPE html>
5
<html>
6
<body>
7
8
<?php
9
$str = "PHP is pretty fun!!";
10
$strArray = count_chars($str,1);
11
12
foreach ($strArray as $key=>$value)
13
    {
14
    echo "字符 <b>'".chr($key)."'</b> 被找到 $value 次。<br>";
15
    }
16
?>
17
18
</body>
19
</html>
20
21
22