PHP实现抓取HTTPS内容
(编辑:jimmy 日期: 2024/11/20 浏览:3 次 )
最近在研究Hacker News API时遇到一个HTTPS问题。因为所有的Hacker News API都是通过加密的HTTPS协议访问的,跟普通的HTTP协议不同,当使用PHP里的函数 file_get_contents()
来获取API里提供的数据时,出现错误,使用的代码是这样的:
<"https://hacker-news.firebaseio.com/v0/topstories.json");
......
当运行上面的代码是遇到下面的错误提示:
PHP Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP"php https error" src="/UploadFiles/2021-04-02/2014120115483417.png">为什么会出现这样的错误?
在网上经过一番搜索,发现遇到这样错误的人还不少,问题很直接,是因为在PHP的配置文件里没有开启一个参数,在我本机上是
/apache/bin/php.ini
里的;extension=php_openssl.dll
这一项,需要将前面的分号去掉。你可以用下面的脚本来检查你的PHP环境的配置:$w = stream_get_wrappers();
echo 'openssl: ', extension_loaded ('openssl') "\n";
echo 'http wrapper: ', in_array('http', $w) "\n";
echo 'https wrapper: ', in_array('https', $w) "\n";
echo 'wrappers: ', var_dump($w);
运行上面的这个脚本片段,在我的机器上得到的结果是:
openssl: no
http wrapper: yes
https wrapper: no
wrappers: array(10) {
[0]=>
string(3) "php"
[1]=>
string(4) "file"
[2]=>
string(4) "glob"
[3]=>
string(4) "data"
[4]=>
string(4) "http"
[5]=>
string(3) "ftp"
[6]=>
string(3) "zip"
[7]=>
string(13) "compress.zlib"
[8]=>
string(14) "compress.bzip2"
[9]=>
string(4) "phar"
}