/**
* Describe:Curl post函数
* @param $url
* @param array $data
* @param bool $isPost
* @param int..., 1);// POST数据
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); // POST参数
}..., array $headers = [], array $data = [], $type = \Requests::GET, array $options = [])
{
$...response->body = '';
return $response;
}
}
}
复制代码
//业务代码
// www.cwl.gov.cn 请求头..., $headers, $urlParams, 'GET', $options);
return $response->body;
}
/**