From d9eabb862180d83f8e937aecb429bc7b3833b6e2 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 2 Apr 2014 20:37:37 +0800 Subject: [PATCH] GoogleTranslate.php --- GoogleTranslate.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/GoogleTranslate.php b/GoogleTranslate.php index 18fa2a27..3ebb2adc 100644 --- a/GoogleTranslate.php +++ b/GoogleTranslate.php @@ -50,7 +50,10 @@ class Pman_Core_GoogleTranslate extends Pman // // $response = curl_exec($handle); // utf8_decode('{"success":true,"total":1,"data":{"data":{"translations":[{"translatedText":"Alessi% E6% 96% B0% E5% 93% 81% E7% 99% BC% E5% B8% 83% E3% 80% 80% E6% 99% 82% E5% B0% 9A% E5% AF% A6% E7% 94% A8% E5% 85% BC% E5% 82% 99"}]}}}'); - $responseDecoded = json_decode(utf8_decode('{"success":true,"total":1,"data":{"data":{"translations":[{"translatedText":"Alessi% E6% 96% B0% E5% 93% 81% E7% 99% BC% E5% B8% 83% E3% 80% 80% E6% 99% 82% E5% B0% 9A% E5% AF% A6% E7% 94% A8% E5% 85% BC% E5% 82% 99"}]}}}')); + + $testStr = '{"success":true,"total":1,"data":{"data":{"translations":[{"translatedText":"Alessi% E6% 96% B0% E5% 93% 81% E7% 99% BC% E5% B8% 83% E3% 80% 80% E6% 99% 82% E5% B0% 9A% E5% AF% A6% E7% 94% A8% E5% 85% BC% E5% 82% 99"}]}}}'; +// mb_convert_encoding($testStr, 'HTML-ENTITIES', "UTF-8"); + $responseDecoded = json_decode(mb_convert_encoding($testStr, 'HTML-ENTITIES', "UTF-8")); // curl_close($handle); // print_r($responseDecoded->data->data->translations[0]->translatedText); $this->jok($responseDecoded->data->data->translations[0]); -- 2.39.2