summaryrefslogtreecommitdiffstats
path: root/php_http_client
diff options
context:
space:
mode:
Diffstat (limited to 'php_http_client')
-rw-r--r--php_http_client/client.php1
-rw-r--r--php_http_client/config.php11
2 files changed, 11 insertions, 1 deletions
diff --git a/php_http_client/client.php b/php_http_client/client.php
index cc79505..77ca629 100644
--- a/php_http_client/client.php
+++ b/php_http_client/client.php
@@ -129,7 +129,6 @@ class Client {
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'GET');
break;
case 'post':
- curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'POST');
$request_body = json_encode($request_body);
curl_setopt($curl, CURLOPT_POSTFIELDS, $request_body);
diff --git a/php_http_client/config.php b/php_http_client/config.php
index e69de29..ba33bef 100644
--- a/php_http_client/config.php
+++ b/php_http_client/config.php
@@ -0,0 +1,11 @@
+<?php
+class Config{
+ function __construct($base_path, $config_filename){
+ $handle = fopen($base_path.'/'.$config_filename, "r");
+ while (($line = fgets($handle)) !== false) {
+ putenv(trim(preg_replace('/\s+/', ' ', $line)));
+ }
+ fclose($handle);
+ }
+}
+?>