受密码保护的页面,如何用PHP访问它?
假设我有一个受 cPanel 目录密码类型(htaccess)密码保护的页面,我如何使用 PHP 访问该页面?因此,php 脚本将:
- 转到受密码保护的 URL
- 输入用户名
- 输入密码
- 如果有效则返回 true,如果无效则返回 false
任何帮助将不胜感激。
Say I have a page which is password protected with cPanel's directory password type of thing (htaccess), how could I access this page using PHP? So the php script would:
- Go to the password protected URL
- Enter the username
- Enter the password
- Return true if it worked, false if it didnt
Any help would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 cURL。
您可以设置
CURLOPT_HTTPAUTH
连接选项并传递凭据。实际上有一个包含代码的用户评论应该可以帮助您开始使用基本身份验证。Check out cURL.
You can set the connection options for
CURLOPT_HTTPAUTH
and pass the credentials. There's actually a user comment containing code that should help you get started with Basic Auth.