我使用Apache v2.2.17和PHP v5.3.5安装了wampserver。
当我使用带有HTTPS URL的函数file_get_contents()
作为参数时,我收到以下警告:
警告:file_get_contents() [function.file-get-contents]:无法使用 找到包装“https” - 你呢? 忘了在你的时候启用它 配置PHP?在 第22行的C:\ wamp \ www \ fbapp \ index.php
有没有办法配置wampserver以启用SSL而无需重新安装它?
答案 0 :(得分:37)
我查了一下你应该:
ssl_module
。php_openssl
。工作! :)
答案 1 :(得分:0)
再检查一下:
如果找不到文件,也可能会出错。所以使用这个:
$f=@file_get_contents(path);
if($f){
// your code here...
}