php url地址欄傳中文亂碼解決方案集合

來源:互聯網
上載者:User
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);

//方法三讓伺服器支援中文

[root@dhcp ~]# 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=
[root@dhcp ~]#

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.