在函数中使用curl而不是file_get_contents

时间:2016-03-09 14:18:53

标签: php wordpress file file-get-contents

在我的代码下面加载和存储xml-feed。重要的是,如果Feed处于脱机状态或响应缓慢,则超时。

某些用户没有启用file_get_contents。我正在寻找一种方法来改变它来卷曲或检查并使用已启用的方法。并且不会失去设置超时的功能。有什么想法吗?

    function feeder()
    {
    $cache_time = 3600 * 12; // 12 hours
    $cache_file = plugin_dir_path(__FILE__) . '/cache/feed.xml';
    $timedif = @(time() - filemtime($cache_file));
    $fc_xml_options = get_option('fc_xml_options');
    $xml_feed = $fc_xml_options['feed'];

    // remove white space(s) and/or space(s) from connector code

    $xml_feed = str_replace(' ', '', $xml_feed);
    $xml_feed = preg_replace('/\s+/', '', $xml_feed);
    if (file_exists($cache_file) && $timedif < $cache_time)
        {
        $string = file_get_contents($cache_file);
        }
      else
        {
        // set a time-out (5 sec) on fetch feed
        $xml_context = array( 'http' => array(
              'timeout'       => 5,
          ) );
        $pure_context = stream_context_create($xml_context);

        $string = file_get_contents($xml_feed, false, $pure_context);
        if ($f = @fopen($cache_file, 'w'))
            {
            fwrite($f, $string, strlen($string));
            fclose($f);
            }
        }

1 个答案:

答案 0 :(得分:1)

您可以使用curl读取本地文件。只需将网址更改为以file://

为前缀的文件路径
    $ch = curl_init(); 
    curl_setopt($ch, CURLOPT_URL, "file://full_path_to_file"); 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
    // $output contains the output string 
    $output = curl_exec($ch);  
    curl_close($ch);