2013-07-01 29 views
0
$response = file_get_contents($requestUri,0, $context); 

提供了以下错误PHP:没有这样的文件或目录

Warning: file_get_contents(): Unable to find the wrapper "https" - did you  forget to enable it when you configured PHP? in C:\wamp\www\bing_basic.php on line 58 

Warning: file_get_contents(https://api.datamarket.azure.com/Bing/Search/Web?$format=json&Query=%27dfg%27): failed to open stream: No such file or directory in C:\wamp\www\bing_basic.php on line 58 

上如何去消除他们有什么建议?我正在使用Bing API密钥在使用WAMP的HTML页面上获取结果。

回答

1

在您的php.ini文件中启用extension=php_openssl.dll,然后重新启动服务器。

相关问题