<? $a = "测试 test 测试"; echo strlen($a)."\n"; for ( $i=0; $i echo $a[$i]."\n"; } ?> 每个汉字的长度是2 我想打印 测 试 t e s t 测 试 怎么写? 谢谢了