码迷,mamicode.com
首页 > Web开发 > 详细

PHP CURL设置Authorization

时间:2019-12-02 11:51:17      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:form   dig   url   user   top   digest   ini   return   content   

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $linkUrl);

curl_setopt($ch, CURLOPT_VERBOSE, 1);

curl_setopt($ch, CURLOPT_FAILONERROR, false);

curl_setopt($ch, CURLOPT_CUSTOMREQUEST, ‘POST‘);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($ch, CURLOPT_HTTPHEADER, [‘Content-Type:application/x-www-form-urlencoded‘]);

//设置凭证
curl_setopt($ch, CURLOPT_USERPWD, ‘user:pwd‘);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);

PHP CURL设置Authorization

标签:form   dig   url   user   top   digest   ini   return   content   

原文地址:https://www.cnblogs.com/codeninja/p/11969624.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!