PHP simple method to determine text encoding_php skills

WBOY
Release: 2016-05-16 20:09:28
Original
1030 people have browsed it

The example in this article describes how to simply determine the text encoding in PHP. Share it with everyone for your reference. The details are as follows:

Here, a loop encoding of the text is used to determine whether it belongs to this encoding.

public function chkCode($string) {
$code = array(
 'ASCII',
 'GBK',
 'UTF-8'
);
foreach ($code as $c) {
 if ($string === iconv('UTF-8', $c, iconv($c, 'UTF-8', $string))) {
  return $c;
 }
}
return null;
}

Copy after login

I hope this article will be helpful to everyone’s PHP programming design.

Related labels:
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