2024-11-29

PHP Curl 如何添加身份验证?

php curl 如何添加身份验证?

如何在 php 的 curl 中添加身份验证

遇到这样的问题:

get /snapshot?ext=[jpg|png]&compress=[0.1-1]&orient=[0|1|2|3] http/1.1
host: [服务端 ip]
auth: [验证串]
登录后复制

需要在 curl 中添加授权,但不知道如何使用哪个函数。

解决方法

立即学习PHP免费学习笔记(深入)”;

根据 stackoverflow 上的讨论(参考:http://stackoverflow.com/questions/20064271/how-to-use-basic-authorization-in-php-curl),可以使用 curl_setopt 函数:

curl_setopt($ch, CURLOPT_USERPWD, "<span style="color: #800080">$username</span>:<span style="color: #800080">$password</span>");
登录后复制

以上就是PHP Curl 如何添加身份验证?的详细内容,更多请关注php中文网其它相关文章!

https://www.php.cn/faq/1118844.html

发表回复

Your email address will not be published. Required fields are marked *