PHP analyzes phonetic functions from alphabetic strings

Source: Internet
Author: User
Keywords Web Programming PHP Tutorials
Tags analyzing code data domain domain name function functions name

The following code implements a function that analyzes the phonetic characters within a string given a string, which is useful when analyzing a domain name as a double spell or three spelling.

The

Specific code is as follows:
include (' data.php ');
 
Function Ispinyin ($str) {
 
 global $data;
 
    $str = Str_replace (Strstr ($str, '. '), ', $str ';                     
 
     if (! Preg_match ('/^[a-za-z]+$/', $str)) {
 
            return ' no ';
 
   }
 
 
 
  $pinYinCount = $runCount = 0;
 
 while (strlen ($STR) > 0) { 
 
  $runCount + +;  
 
  foreach ($data [$str {0}] as $key => $value) {   
 
   $curPinYinLen = Strlen ($value);  
 
   if ($value = = substr ($str, 0, $curPinYinLen) {      
 
    $pinYinCount + +;
 
    $pinyin. = $value. ';     
 
    $str = substr ($str, $curPinYinLen);
 
    break;
 
  }
 
 }
 
  if ($pinYinCount < $runCount) {
 
   $str = ';
 
   $pinYinCount = 0;
 
 }
 
 
 
 return $pinyin;
 
}
 
$domain = ' pinyin.com ';
 
Echo ispinyin ($domain); //Pin Yin
$data is an array that includes all phonetic combinations (needs to be optimized)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.