File_get_contents函数不适用于Windows?

时间:2013-07-13 17:21:58

标签: php linux windows file-get-contents groupon

file_get_contents("https://api.groupon.com/v2/deals.xml?division_id=cleveland&client_id=39ddf70c45844d5a9d5a92e5106f1b229b2e1df8");

此代码不适用于Windows,但适用于Linux。因为https。有没有解决方案。

1 个答案:

答案 0 :(得分:1)

您可能没有在PHP配置中打开您的网址文件。

有关此配置值的详细信息,请参阅http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen

如果这不是原因,那么您应该指定确切的错误,通过在file_get_contents函数之前在代码中添加以下内容来执行此操作:

error_reporting(E_ALL);
ini_set('display_errors', 'On');