读取https内容
我有一个用php开发的网页。我想读取 https://(url) 文件的内容。我怎样才能读取它。我已经使用了 file_get_contents( )。问题是它可以读取 http 协议的文件,但无法读取 https 协议的文件。
请帮帮我......
提前致谢。
I have a webpage developed in php. I want to read the content of a https://(url) file. how can i read that. I have used file_get_contents().The problem is that it can read file with http protocol but cannot read file with https protocol.
Please help me out ...
Thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 cURL 扩展。
Use the cURL extension.
file_get_contents() 应该可以正常工作,听起来你的 PHP 没有 SSL 支持。
file_get_contents() should work fine, sounds like your PHP doesn't have SSL support.
问题是您需要进行身份验证。使用此:
编辑:您需要让服务器运行 FTP 和 OpenSSL 才能使用 ftp-ssl-connect(此处来自 php.net 的说明)。
Problem is you need to authenticate. Use this:
EDIT: You need to have your server running with the FTP and OpenSSL in order to be able to use ftp-ssl-connect (description from php.net here).