douju1852 2015-04-07 18:24
浏览 106
已采纳

Apache服务器中未定义File_get_contents错误

I wrote a simple script to get content of a page. When I am running it on Apache server, I'm getting an error:

file_get_contents is not defined

Apache 2.2, PHP 5.3.9. Here is the code:

$url = "http://steamcommunity.com/market/priceoverview/?appid=730&country=PL&currency=3&market_hash_name=Desert%20Eagle%20%7C%20Blaze%20(Minimal%20Wear)";
$json = file_get_contents($url);
$price = json_decode($json);
alert(price.lowest_price);

How to fix it?

  • 写回答

1条回答 默认 最新

  • duancilan5124 2015-04-07 18:32
    关注

    If you're local that may be an issue. In your php.ini file try to add

    allow_url_fopen = 1
    

    and re-try. I like to use cURL if I have to grab a file. Here is really simple example of file grabbing remotely.

    /* gets the data from a URL */
    function get_data($url) {
        $ch = curl_init();
        $timeout = 5;
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
        $data = curl_exec($ch);
        curl_close($ch);
        return $data;
    }
    

    The Usage

    $returned_content = get_data('http://www.grab.com/grab-me.html');
    

    This is guaranteed to work whether or not you're having issues with file_get_contents

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵