Coding in PHP has always been a headache for developers, but it would be different if there were some sweet and useful functions. Let’s introduce a processing function for Chinese encoding.
$str, the string to be converted to encoding
$encoding1, target encoding, such as utf-8, gbk, both upper and lower case
$encoding2, original encoding, such as utf-8, gbk, both upper and lower case
/* Auto detect encoding from JIS, eucjp-win, sjis-win, then convert str to UCS-2LE */
$str = mb_convert_encoding($str, "UCS-2LE", "JIS, eucjp-win, sjis-win");
/* "auto" is expanded to "ASCII,JIS,UTF-8,EUC-JP,SJIS" */
$str = mb_convert_encoding($str, "EUC-JP", "auto");
?>
Example 2
The code is as follows
Copy code
$str='Movie 618:http://www.bKjia.c0m';
echo mb_convert_encoding($str, "UTF-8", "GBK"); //It is known that the original encoding is GBK, convert to utf-8
?> Example 3
The code is as follows
Copy code
$str='Movie 618:http://www.bKjia.c0m';
echo mb_convert_encoding($str, "UTF-8", "auto"); //Unknown original encoding, after automatic detection by auto, convert the encoding to utf-8
?>
php.net website example
The code is as follows
Copy code
/* Convert internal character encoding to SJIS */<🎜>
$str = mb_convert_encoding($str, "SJIS");<🎜>
<🎜>/* Convert EUC-JP to UTF-7 */<🎜>
$str = mb_convert_encoding($str, "UTF-7", "EUC-JP");<🎜>
<🎜>/* Auto detect encoding from JIS, eucjp-win, sjis-win, then convert str to UCS-2LE */<🎜>
$str = mb_convert_encoding($str, "UCS-2LE", "JIS, eucjp-win, sjis-win");<🎜>
<🎜>/* "auto" is expanded to "ASCII,JIS,UTF-8,EUC-JP,SJIS" */<🎜>
$str = mb_convert_encoding($str, "EUC-JP", "auto");<🎜>
?>
http://www.bkjia.com/PHPjc/632258.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632258.htmlTechArticleCoding in PHP has always been a headache for developers, but it will be different if some useful functions are added. , below we introduce the processing function of a Chinese encoding. ...
Statement of this Website
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
PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals.
This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati
CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu
Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems.
With a large collection of extensions for many programming languages, VS Code can be c