我越來越AA請求,這樣和URL看起來是這樣的:http://domain.com/page.php?text= {阿拉伯語詞}獲得阿拉伯語查詢字符串問號
現在我試圖讓使用$ _GET文[「文本」],但我不斷得到它像「????????」 ,什麼問題
<?php
header('Content-type: text/html; charset=UTF-8');
include('EnTransliteration.class.php');
$tr = new EnTransliteration();
$str = iconv("utf-8//TRANSLIT//IGNORE","windows-1256", $_GET['text']);
$en_str = $tr->ar2en($str);
$string = <<<XML
<root>
<translation>$en_str</translation>
</root>
XML;
$xml = new SimpleXMLElement($string);
header('Content-type: text/xml; charset=UTF-8');
echo $xml->asXML();
?>
我有同樣的問題,但找不到解決方法:(你解決了這個問題嗎?請指教 – moderns