Home  >  Article  >  Backend Development  >  PHP converts full-width characters in a string to half-width characters_PHP tutorial

PHP converts full-width characters in a string to half-width characters_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 09:53:51966browse

php converts the full-width characters in the string to half-width characters

php converts the full-width characters in the string to half-width characters, excerpted from ecshop.

/**
 * 将一个字串中含有全角的数字字符、字母、空格或'%+-()'字符转换为相应半角字符
 * @access  public
 * @param   string       $str         待转换字串
 * @return  string       $str         处理后字串
 */

function make_semiangle($str){
    $arr = array('0' => '0', '1' => '1', '2' => '2', '3' => '3', '4' => '4',
                 '5' => '5', '6' => '6', '7' => '7', '8' => '8', '9' => '9',
                 'A' => 'A', 'B' => 'B', 'C' => 'C', 'D' => 'D', 'E' => 'E',
                 'F' => 'F', 'G' => 'G', 'H' => 'H', 'I' => 'I', 'J' => 'J',
                 'K' => 'K', 'L' => 'L', 'M' => 'M', 'N' => 'N', 'O' => 'O',
                 'P' => 'P', 'Q' => 'Q', 'R' => 'R', 'S' => 'S', 'T' => 'T',
                 'U' => 'U', 'V' => 'V', 'W' => 'W', 'X' => 'X', 'Y' => 'Y',
                 'Z' => 'Z', 'a' => 'a', 'b' => 'b', 'c' => 'c', 'd' => 'd',
                 'e' => 'e', 'f' => 'f', 'g' => 'g', 'h' => 'h', 'i' => 'i',
                 'j' => 'j', 'k' => 'k', 'l' => 'l', 'm' => 'm', 'n' => 'n',
                 'o' => 'o', 'p' => 'p', 'q' => 'q', 'r' => 'r', 's' => 's',
                 't' => 't', 'u' => 'u', 'v' => 'v', 'w' => 'w', 'x' => 'x',
                 'y' => 'y', 'z' => 'z',
                 '(' => '(', ')' => ')', '〔' => '[', '〕' => ']', '【' => '[',
                 '】' => ']', '〖' => '[', '〗' => ']', '"' => '[', '"' => ']',
                 '\'' => '[', '\'' => ']', '{' => '{', '}' => '}', '《' => '<',
                 '》' => '>',
                 '%' => '%', '+' => '+', '—' => '-', '-' => '-', '~' => '-',
                 ':' => ':', '。' => '.', '、' => ',', ',' => '.', '、' => '.',
                 ';' => ',', '?' => '?', '!' => '!', '…' => '-', '‖' => '|',
                 '"' => '"', '\'' => '`', '\'' => '`', '|' => '|', '〃' => '"',
                 ' ' => ' ');
    return strtr($str, $arr);
}

Articles you may be interested in

  • php Convert multiple consecutive spaces in a string to one space
  • php How to convert br line breaks in html Convert to newline character in text input
  • How js converts the returned string into json format data
  • Mysql querying single quoted strings and inserting single quoted strings requires attention
  • php method to determine whether a string is all in English, pure Chinese, and a combination of Chinese and English
  • php function converts hexadecimal color codes into RGB color values
  • php gets utf8 The character length of the string
  • JS array to string, js string to array method summary

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/999259.htmlTechArticlephp converts full-width characters in a string to half-width characters php converts full-width characters in a string to half-width characters, excerpted from ecshop. /** * Contains full-width numeric characters and letters in a string...
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