How to solve the problem of garbled parameters passed by php get

藏色散人
Release: 2023-03-12 18:48:01
Original
1479 people have browsed it

Solution to the garbled parameters passed by php get: 1. Open the corresponding PHP file; 2. Pass "if( $tag === iconv('UTF-8', $c, iconv($c, 'UTF-8', $tag))){...}" method can be used to convert the encoding.

How to solve the problem of garbled parameters passed by php get

#The operating environment of this article: Windows7 system, PHP7.1, Dell G3 computer.

How to solve the problem of garbled parameters passed by php get?

Try to solve the problem of garbled Chinese parameters passed by php get

The Chinese parameters of the website are directly For example, /index.php?t=Hello

All pages are encoded in utf-8

Firefox, normal IE garbled code under firefox

Currently use this The method is a temporary solution.

$bm = array('UTF-8','GBK'); $charTest; foreach($bm as $c){ if( $tag === iconv('UTF-8', $c, iconv($c, 'UTF-8', $tag))){//转换编码后是不是相等 $charTest = $c; break; } } if($charTest == 'GBK'){ $tag = iconv('GBK', 'UTF-8', $tag); }
Copy after login

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to solve the problem of garbled parameters passed by php get. For more information, please follow other related articles on the PHP Chinese website!

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
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!