From de6867064b7240fb9362550d7723b489f23617f1 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 2 Apr 2014 18:39:00 +0800 Subject: [PATCH] GoogleTranslate.php --- GoogleTranslate.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/GoogleTranslate.php b/GoogleTranslate.php index 057a2494..65961cdf 100644 --- a/GoogleTranslate.php +++ b/GoogleTranslate.php @@ -41,12 +41,12 @@ 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')); + $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); -- 2.39.2