当前位置:Gxlcms > PHP教程 > php中使用split分离汉字的代码

php中使用split分离汉字的代码

时间:2021-07-01 10:21:17 帮助过:2人阅读

  1. $str=decode("gb2312",$names[$index]);
  2. @chars=split(//,$str);
  3. foreach(@chars)
  4. {
  5. $char=encode("gb2312",$_);
  6. print "ONE WORD:$char\n";
  7. }

方法二: 中文字符是占了2个字节,所以你可以用下面语句直接得到汉字,代码如下:

  1. @chars=split(//,$names[$index]);
  2. $str=$chars[0].$chars[1];

人气教程排行