王新凯 3 years ago
parent
commit
72bf503c1c
1 changed files with 42 additions and 0 deletions
  1. 42 0
      application/index/controller/Index.php

+ 42 - 0
application/index/controller/Index.php

@@ -44,4 +44,46 @@ class Index extends Controller
         
     }
 
+
+
+    public function tt(){
+
+        $url1='https://openchain.jd.com/server/account/getServerToken';
+
+        $res1=$this->curl_post($url1,$data);
+
+        dump($res1);die();
+
+
+    }
+
+    public function curl_post($url , $data=array()){
+
+        $ch = curl_init();
+
+        curl_setopt($ch, CURLOPT_URL, $url);
+
+        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
+
+        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
+
+        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
+
+        // POST数据
+
+        curl_setopt($ch, CURLOPT_POST, 1);
+
+        // 把post的变量加上
+
+        curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
+
+        $output = curl_exec($ch);
+
+        curl_close($ch);
+
+        return $output;
+
+    }
+
+
 }