php url 中文亂碼的解決辦法彙總

2020-07-16 10:06:20

php url中文亂碼的解決辦法:1、使用「urlencode」函數解決url編碼問題,語法是「string urlencode(string str);」;2、通過「urldecode」函數還原URL編碼字串。

php位址列傳中文$_GET下來後亂碼,urlencode和urldecode用法詳解

url編碼

語法: string urlencode(string str);

返回值: 字串

函數種類: 編碼處理

例如:

程式碼如下:

<?php
$ChineseName="我的名字,是中文的哦";
$EncodeStr=urlencode($ChineseName);
echo "<a href=/cgi/personal.cgi?name=$EncodeStr>我的名字</a>";
?>

url解碼

還原 URL 編碼字串。

語法: string urldecode(string str);

返回值: 字串

函數種類: 編碼處理

例如:

對前面傳過來的中文進行處理顯示

程式碼如下:

<?php
$DecodeStr=urldecode($_GET['name']);//你可能不用解碼都可以,因為瀏覽器會自動幫你解碼
echo $DecodeStr;
?>

關於php用get方法從url上獲得的中文亂碼問題

使用$gonghui = iconv("gb2312","UTF-8",$gonghui);另一方法程式碼

/**
* 多位元組字串編碼轉換函數
*
* @param string str 需要進行編碼轉換的字串
* @param string to_encoding 指定轉換為某種編碼,如:gb2312、gbk、utf-8等
* @param mixed from_encoding 混合指定原來字串的編碼,如:同時指定 JIS, eucjp-win, sjis-win 混合編碼
* @return string
string mb_convert_encoding ( string str, string to_encoding [, mixed from_encoding] )
**/

mb_convert_encoding

函數為php內部多位元組字串編碼轉換函數,可以在有需要的使用場合,幾乎支援所有編碼。

PHP >= 4.0.6、 5 版本支援。

直接獲取 reg.php?gh=某某;

 //工會登入參
$gonghui = $_GET['gh'];

獲得的$gonghui 為gb2312編碼 輸出到utf-8網頁上顯示亂碼

改成

 //工會登入引數
 $gonghui = $_GET['gh'];
 $gonghui = mb_convert_encoding($gonghui, "UTF-8", "gb2312");

就顯示正常了

對整個頁面進行轉換

該方法適用所有編碼環境。這樣把前128個字元以外(顯示字元)的字元集都用 NCR(Numeric character reference,如「漢字」將轉換成「漢字」這種形式)來表示,這樣的編碼在任意編碼環境下頁面都能正 常顯示。

在php檔案的頭部加上下面三行程式碼:

程式碼如下:

mb_internal_encoding("gb2312");  // 這裡的gb2312是你網站原來的編碼    
mb_http_output("HTML-ENTITIES");    
ob_start('mb_output_handler');

使用mb_convert_encoding 函數需啟用PHP 的mbstring (multi-byte string)擴充套件。

如果沒有沒有開啟php的mbstring擴充套件,則需要做如下設定,讓php支援該擴充套件。

1、windows 伺服器環境

編輯 php.ini 檔案,將; extension=php_mbstring.dll 前面的 ; 去掉,重新啟動網頁伺服器。

2、Linux伺服器環境

在編譯設定時加入 --enable-mbstring=cn 編譯引數,再進行PHP的編譯安裝。

其它網友的第三個參考方法:

//方法一 urldecode
$url = 'aaa.php?region='.urldecode("四川省");
<a href="<?php echo $url;?>">aaa </a>
//方法二base64_encode
<?
$test="四川省";
$test1=base64_encode($test);
echo '<a href="www.jb51.net?region=$test1">aaa </a>';
?>

另一頁面使用base64_decode解開

base64_decode($region);
//方法三讓伺服器支援中文
[[email protected] ~]# locale
lang=zh_cn.utf-8
lc_ctype="zh_cn.utf-8"
lc_numeric="zh_cn.utf-8"
lc_time=c
lc_collate=c
lc_monetary="zh_cn.utf-8"
lc_messages="zh_cn.utf-8"
lc_paper="zh_cn.utf-8"
lc_name="zh_cn.utf-8"
lc_address="zh_cn.utf-8"
lc_telephone="zh_cn.utf-8"
lc_measurement="zh_cn.utf-8"
lc_identification="zh_cn.utf-8"
lc_all=
[[email protected] ~]#

更多相關知識,請存取PHP中文網

以上就是php url 中文亂碼的解決辦法彙總的詳細內容,更多請關注TW511.COM其它相關文章!