PHP.ini默认配置下,用file_get_contents读取https的链接,就会如下错误:
Warning: fopen() [function.fopen]: Unable to find the wrapper "https" - did you forget to enable it when you configured PHP?解决方案有3:
1.windows下的PHP,只需要到php.ini中把extension=php_openssl.dll前面的;删掉,重启服务就可以了。
2.linux下的PHP,就必须安装openssl模块,安装好了以后就可以访问了。
本文详细介绍了在PHP.ini默认配置下使用file_get_contents读取HTTPS链接时遇到错误的解决方法。对于Windows用户,只需在php.ini中删除extension=php_openssl.dll前的分号并重启服务即可;对于Linux用户,则需安装openssl模块以解决问题。

1942

被折叠的 条评论
为什么被折叠?



