From 09f05d525429350c96fb4cc41cd7139201295681 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 2 Apr 2014 20:22:53 +0800 Subject: [PATCH] GoogleTranslate.php --- GoogleTranslate.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/GoogleTranslate.php b/GoogleTranslate.php index dc29f705..57247530 100644 --- a/GoogleTranslate.php +++ b/GoogleTranslate.php @@ -40,16 +40,16 @@ class Pman_Core_GoogleTranslate extends Pman ); $url = 'https://www.googleapis.com/language/translate/v2'; - - $handle = curl_init(); - curl_setopt($handle, CURLOPT_URL, $url); - curl_setopt($handle, CURLOPT_POST, count($param)); - curl_setopt($handle, CURLOPT_POSTFIELDS, http_build_query($param)); - curl_setopt($handle, CURLOPT_RETURNTRANSFER, true); - curl_setopt($handle, CURLOPT_HTTPHEADER, array('X-HTTP-Method-Override: GET')); - - $response = curl_exec($handle); - +// +// $handle = curl_init(); +// curl_setopt($handle, CURLOPT_URL, $url); +// curl_setopt($handle, CURLOPT_POST, count($param)); +// curl_setopt($handle, CURLOPT_POSTFIELDS, http_build_query($param)); +// curl_setopt($handle, CURLOPT_RETURNTRANSFER, true); +// curl_setopt($handle, CURLOPT_HTTPHEADER, array('X-HTTP-Method-Override: GET')); +// +// $response = curl_exec($handle); +// $responseDecoded = json_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"}]}}}', true); curl_close($handle); -- 2.39.2