From 613e62b4fe1e6a4f0a8ff194a818d7aff2f02e25 Mon Sep 17 00:00:00 2001 From: unknown <736250432@qq.com> Date: Wed, 23 Aug 2023 18:25:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=B0=BD=E7=B4=84=E5=9B=9E?= =?UTF-8?q?=E8=AA=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/controller/IndexController.php | 2 +- app/common.php | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) 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