PHP 标头信息
我是一名 PHP 开发人员。我在获取用户在使用 CURL 发送的请求中设置的“授权变量”时遇到问题。
我无法在我的 php 代码中的curl 请求期间获取用户设置的这些变量。请帮忙提前致谢。
I am a PHP developer. i am facing a problem on getting "Authorization variables" set by the user in request sent by using CURL.
I am not able to get these variables set by the user during curl request in my php code. Please help thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您要查找的值可能在
$_SERVER
变量中?来自 http://www.php.net/manual/en/reserved .variables.server.php:
您应该能够像这样访问这些变量:
这将使您了解如何处理不同的摘要:http://php.net/manual/en/features.http-auth.php< /a>
It's possible that the values you are looking for are in the
$_SERVER
variables?From http://www.php.net/manual/en/reserved.variables.server.php:
You should be able to access these variables like this:
This will give you an idea of how to handle the different digests: http://php.net/manual/en/features.http-auth.php