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

index 64cb18a..6e8d934 100644 (file)
@@ -43,6 +43,8 @@ class Pman_Core_GoogleTranslate extends Pman
 
         $handle = curl_init($url);
         curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
+        curl_setopt($handle, CURLOPT_POST, count($param));
+        curl_setopt($handle, CURLOPT_POSTFIELDS, $param);
         $response = curl_exec($handle);                 
         $responseDecoded = json_decode($response, true);
         curl_close($handle);