phh get中文亂碼 6月 04, 2014 撰寫網頁時,常會使用GET來傳遞訊息參數。 遇到傳遞中文時,常會出現亂碼,導至網頁出現錯誤。 PHP語言可以使用 urldecode() 函數來解決。 setget.html <a href="search.php?data=北坤最">傳遞中文參數</a> search.php $getstr = $_REQUEST['data']; echo urldecode($getstr); 閱讀完整內容