修改簽約回調

This commit is contained in:
unknown 2023-08-23 18:25:17 +08:00
parent f9efdef64d
commit 613e62b4fe
2 changed files with 24 additions and 1 deletions

View File

@ -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']]);
}
}

View File

@ -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);
}