diff --git a/app/api/controller/IndexController.php b/app/api/controller/IndexController.php index ab58f0f8c..cfe1b445a 100755 --- a/app/api/controller/IndexController.php +++ b/app/api/controller/IndexController.php @@ -110,7 +110,7 @@ class IndexController extends BaseApiController Db::name('user')->where('id',$find['party_b'])->update(['is_contract'=>1]); } } - + curl_post('http://logistics.lihaink.cn/api/updateRentRecord',[],['contract_id'=>$a['id']]); } } diff --git a/app/common.php b/app/common.php index dd8b601ee..11f3baba9 100755 --- a/app/common.php +++ b/app/common.php @@ -486,4 +486,27 @@ function curl_get($url){ curl_close($ch); $result = json_decode($output,true); return $result; +} + +function curl_post($url,$headers,$data) { + //初始化curl + $ch = curl_init(); + curl_setopt($ch,CURLOPT_URL,$url); + //设置获取的信息以文件流的形式返回,而不是直接输出。 + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); + //设置头文件的信息作为数据流输出 + curl_setopt($ch, CURLOPT_HEADER, 0); + curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 120); + curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, FALSE); + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); + //设置为post方式请求 + curl_setopt($ch, CURLOPT_POST, 1); + //添加参数 + curl_setopt($ch, CURLOPT_POSTFIELDS, $data); + //设置header + curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); + //关闭请求资源 + $output = curl_exec($ch); + curl_close($ch); + return json_decode($output,true); } \ No newline at end of file