2013-07-01 42 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,然後重新啓動服務器。

相關問題