$host = 'url'
$ch = curl_init()
curl_setopt($ch, CURLOPT_URL, $host)
// 返回结果
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1)
curl_setopt($ch, CURLOPT_HEADER, 0)
// 使用POST提交
curl_setopt($ch, CURLOPT_POST, 1)
// POST参数
$str = array('a=1','b=2','c=3')
curl_setopt($ch, CURLOPT_POSTFIELDS, $str)
// 结果
$res = curl_exec($ch)
curl_close($ch)
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)