PHP Chinese character encoding conversion method

藏色散人
Release: 2023-03-04 19:52:02
Original
4529 people have browsed it

php Chinese character encoding conversion method: 1. Use the "string iconv()" method to convert; 2. Use the "mb_convert_encoding" method to convert; 3. Use the "mb_detect_encoding" method to convert.

PHP Chinese character encoding conversion method

# Recommended: "

PHP Video Tutorial

1.

iconv

string iconv (string $in_charset, string $out_charset, string $str)

First parameter: content Original encoding
Second parameter: Target encoding
Third parameter: String to be converted

$filename='我爱你中国';$filename = iconv('gbk','utf-8',$filename);
Copy after login

Analysis: Convert $filename from gbk to utf8

2.

mb_convert_encoding

string mb_convert_encoding ( string $str , string $to_encoding [, mixed $from_encoding ] )

The first parameter: the string to be processed
Second parameter: target encoding
Third parameter: original encoding of content

$filename='我爱你中国';$filename = mb_convert_encoding($filename,'GBK','UTF-8');
Copy after login

Analysis: Convert $filename from utf8 to gbk

3.

mb_detect_encodingView character encoding
$filename='我爱你中国';$encode = mb_detect_encoding($filename, array("ASCII","UTF-8","GB2312","GBK","BIG5"));echo $encode;die;
Copy after login

PHP Chinese character encoding conversion method

##

The above is the detailed content of PHP Chinese character encoding conversion method. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!