Home  >  Article  >  Backend Development  >  PHP cuts a string containing Chinese and English ASCII codes into a single word array_PHP tutorial

PHP cuts a string containing Chinese and English ASCII codes into a single word array_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:46:361335browse

//Cut the string containing Chinese and English ASCII codes into a single word array

//Satan@Author 2011-10-26

private function chinesesplit($str){

                                                                                    //$str="

          $ascLen=strlen($str);

for($i;$i<$ascLen;$i++){

          $c=ord(substr($str,0,1));

if(ord(substr($str,0,1)) >252){$p = 5;}elseif($c > 248){$p = 4;}elseif($c > 240){$ p = 3;}elseif($c > 224){$p = 2;}elseif($c > 192){$p = 1;}else{$p = 0;}

         $truekey=substr($str,0,$p+1);

If($truekey===false){break;}

         $splikey[]=$truekey;

          $str=substr($str,$p+1);

}

          return $splikey;

}

Excerpted from Rotting in a Coffin

http://www.bkjia.com/PHPjc/478565.html

truehttp: //www.bkjia.com/PHPjc/478565.htmlTechArticle//Cut the string containing Chinese and English ASCII codes into a single word array//Satan@Author 2011-10-26 private function chinesesplit($str){ //$str=x little girls went to KFC to eat chicken, the flying knife has been taken, nobo...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn