0

您好,我在下载远程文件时遇到了一个奇怪的问题。我正在使用 Flurry Data API 下载一些报告。问题是当我们第一次调用 Flurry API 时,它会为我们提供 XML/JSON 响应,其中包含下载报告的路径。报告准备好大约需要 2 分钟。我对那件事有问题。如果我只是将报告的链接直接粘贴到已经准备好下载的功能,我编写了一个下载远程文件的脚本。它就像一个魅力,但我必须自动化下载过程。因此,为此我首先调用 API 并获取报告下载链接,然后我使用sleep()PHP 的函数停止执行 3 分钟(也尝试了 2 分钟)。然后我调用我用来成功下载报告的相同函数这次不起作用。下面是文件下载方法:

function get_file_and_save($file, $local_path, $newfilename) {
    $err_msg = '';        
    $out = fopen($local_path . $newfilename . ".gz", 'wb');
    if ($out == FALSE) {
        print "File is not available<br>";
        exit;
    }

    $ch = curl_init();
    $headers = array('Content-type: application/x-gzip', 'Connection: Close');
    curl_setopt($ch, CURLOPT_FILE, $out);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($ch, CURLOPT_URL, $file);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0);
    curl_exec($ch);

    echo "<br>Error Occured:" . curl_error($ch);

    curl_close($ch);
}

我也尝试过给予,CURLOPT_TIMEOUT但它也没有工作。

请求download_path正常工作的 Flurry 注释的代码只是获取报告链接:

$query_url = 'http://api.flurry.com/rawData/Events?apiAccessCode=' . $ACCESS_CODE . '&apiKey=' . $API_KEY . '&startTime=' . $start_time . '&endTime=' . $end_time;    

    $response = download_path($query_url);

    if ($response) {
        $response_obj = json_decode($response, true);

        if (isset($response_obj['report']['@reportUri'])) {
            $report_link = $response_obj['report']['@reportUri'];
        }

        if (isset($response_obj['report']['@reportId'])) {
            $report_id = $response_obj['report']['@reportId'];
        }

        if(isset($report_link) && !empty($report_link)){        
                echo "<br >Report Link: ".$report_link."<br >";
                sleep(240); 

                $config = array(
                    'http' => array(
                        'header' => 'Accept: application/json',
                        'method' => 'GET'
                    )
                );
                $stream = stream_context_create($config);
                $json= file_get_contents($report_link,false,$stream);
                echo "<pre>";
                print_r($http_response_header);
                echo "</pre>";    

                if($http_response_header[3] == "Content-Type: application/octet-stream"){
                    get_file_and_save($report_link, "data-files/gz/", $current_time); 
                }
            }
            else{        
                echo "There was some error in downloading report";
            }        

    } else {

        $error = true;
        echo "There was some error in genrating report";
    }

有什么问题sleep()或者我被困在第二晚我无法实现它。

4

1 回答 1

0

检查您的 PHP 脚本是否超时并被终止。网络服务器和 PHP 都有最大执行限制以防止脚本失控,如果你的睡眠超过了这个限制,它就永远不会超过这个限制。

http://www.php.net/manual/en/info.configuration.php#ini.max-execution-time
http://php-fpm.org/wiki/Configuration_File - request_terminate_timeout

http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_read_timeout
http://httpd.apache.org/docs/2.0/mod/core.html#timeout

于 2013-06-21T17:14:24.887 回答