GoogleTranslate.php
authorChris <chris@roojs.com>
Wed, 2 Apr 2014 10:27:39 +0000 (18:27 +0800)
committerChris <chris@roojs.com>
Wed, 2 Apr 2014 10:27:39 +0000 (18:27 +0800)
GoogleTranslate.php

index 259dc79..da8cce3 100644 (file)
@@ -41,7 +41,8 @@ class Pman_Core_GoogleTranslate extends Pman
         
         $url = 'https://www.googleapis.com/language/translate/v2?'.http_build_query($param);
 
-        $handle = curl_init($url);
+        $handle = curl_init();
+        curl_setopt($handle,CURLOPT_URL, $url);
 //        curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
         curl_setopt($handle, CURLOPT_POST, count($param));
         curl_setopt($handle, CURLOPT_POSTFIELDS, $param);