3
我使用谷歌的翻譯API下面的PHP代碼,我讀了json_encode
要求UTF-8輸入,所以想知道我怎麼知道谷歌是否將UTF-8編碼字符返回給我?谷歌翻譯API和字符編碼
// URL Encode string
$str = urlencode($str);
// Make request
$response = file_get_contents('https://www.googleapis.com/language/translate/v2?key=' . GTRAN_KEY . '&target=es&source=en&q=' . $str);
// Decode json response to array
$json = json_decode($response,true);
非常感謝! – Brett