복붙노트

URL에서 서버로 파일 다운로드

PHP

URL에서 서버로 파일 다운로드

글쎄, 이건 아주 간단하게 보입니다. 서버에 파일을 다운로드하기 위해서해야 할 일은 다음과 같습니다.

file_put_contents("Tmpfile.zip", file_get_contents("http://someurl/file.zip"));

단 하나의 문제가 있습니다. 100MB와 같은 큰 파일이 있다면 어떨까요? 그런 다음 메모리가 부족하여 파일을 다운로드 할 수 없습니다.

내가 원하는 것은 파일을 다운로드 할 때 디스크에 파일을 쓰는 방법입니다. 그렇게하면 메모리 문제가없이 더 큰 파일을 다운로드 할 수 있습니다.

해결법

  1. ==============================

    1.PHP 5.1.0부터, file_put_contents ()는 $ data 매개 변수로 stream-handle을 전달하여 개별적으로 쓰는 것을 지원합니다 :

    PHP 5.1.0부터, file_put_contents ()는 $ data 매개 변수로 stream-handle을 전달하여 개별적으로 쓰는 것을 지원합니다 :

    file_put_contents("Tmpfile.zip", fopen("http://someurl/file.zip", 'r'));
    

    매뉴얼에서 :

    (감사합니다 Hakre.)

  2. ==============================

    2.

    private function downloadFile($url, $path)
    {
        $newfname = $path;
        $file = fopen ($url, 'rb');
        if ($file) {
            $newf = fopen ($newfname, 'wb');
            if ($newf) {
                while(!feof($file)) {
                    fwrite($newf, fread($file, 1024 * 8), 1024 * 8);
                }
            }
        }
        if ($file) {
            fclose($file);
        }
        if ($newf) {
            fclose($newf);
        }
    }
    
  3. ==============================

    3.cURL을 사용해보세요.

    cURL을 사용해보세요.

    set_time_limit(0); // unlimited max execution time
    $options = array(
      CURLOPT_FILE    => '/path/to/download/the/file/to.zip',
      CURLOPT_TIMEOUT =>  28800, // set this to 8 hours so we dont timeout on big files
      CURLOPT_URL     => 'http://remoteserver.com/path/to/big/file.zip',
    );
    
    $ch = curl_init();
    curl_setopt_array($ch, $options);
    curl_exec($ch);
    curl_close($ch);
    

    확실하지는 않지만 데이터를 가져올 때 쓰는 CURLOPT_FILE 옵션을 사용한다고 믿습니다. 버퍼링되지 않았습니다.

  4. ==============================

    4.

    <html>
    <form method="post">
    <input name="url" size="50" />
    <input name="submit" type="submit" />
    </form>
    <?php
        // maximum execution time in seconds
        set_time_limit (24 * 60 * 60);
    
        if (!isset($_POST['submit'])) die();
    
        // folder to save downloaded files to. must end with slash
        $destination_folder = 'downloads/';
    
        $url = $_POST['url'];
        $newfname = $destination_folder . basename($url);
    
        $file = fopen ($url, "rb");
        if ($file) {
          $newf = fopen ($newfname, "wb");
    
          if ($newf)
          while(!feof($file)) {
            fwrite($newf, fread($file, 1024 * 8 ), 1024 * 8 );
          }
        }
    
        if ($file) {
          fclose($file);
        }
    
        if ($newf) {
          fclose($newf);
        }
    ?>
    </html> 
    
  5. ==============================

    5.위의 코드는 작동하지 않는 코드입니다 (이유 : CURLOPT_FILE에서 fopen 누락 - http://www.webdeveloper.com/forum/showthread.php?268299-RESOLVED-PHP-script-for-a- cronjob-download-file-unpzck-run-another-php-script). 내가 포인트를 너무 적게해서 주석을 추가 할 수 없다. 그래서 나는 아래의 "local url"을위한 작업 예제를 제공한다.

    위의 코드는 작동하지 않는 코드입니다 (이유 : CURLOPT_FILE에서 fopen 누락 - http://www.webdeveloper.com/forum/showthread.php?268299-RESOLVED-PHP-script-for-a- cronjob-download-file-unpzck-run-another-php-script). 내가 포인트를 너무 적게해서 주석을 추가 할 수 없다. 그래서 나는 아래의 "local url"을위한 작업 예제를 제공한다.

    function downloadUrlToFile($url, $outFileName)
    {   
        if(is_file($url)) {
            copy($url, $outFileName); 
        } else {
            $options = array(
              CURLOPT_FILE    => fopen($outFileName, 'w'),
              CURLOPT_TIMEOUT =>  28800, // set this to 8 hours so we dont timeout on big files
              CURLOPT_URL     => $url
            );
    
            $ch = curl_init();
            curl_setopt_array($ch, $options);
            curl_exec($ch);
            curl_close($ch);
        }
    }
    
  6. ==============================

    6.

    set_time_limit(0); 
    $file = file_get_contents('path of your file');
    file_put_contents('file.ext', $file);
    
  7. ==============================

    7.나는 이것을 사용하여 파일을 다운로드한다.

    나는 이것을 사용하여 파일을 다운로드한다.

    function cURLcheckBasicFunctions()
    {
      if( !function_exists("curl_init") &&
          !function_exists("curl_setopt") &&
          !function_exists("curl_exec") &&
          !function_exists("curl_close") ) return false;
      else return true;
    }
    
    /*
     * Returns string status information.
     * Can be changed to int or bool return types.
     */
    function cURLdownload($url, $file)
    {
      if( !cURLcheckBasicFunctions() ) return "UNAVAILABLE: cURL Basic Functions";
      $ch = curl_init();
      if($ch)
      {
    
        $fp = fopen($file, "w");
        if($fp)
        {
          if( !curl_setopt($ch, CURLOPT_URL, $url) )
          {
            fclose($fp); // to match fopen()
            curl_close($ch); // to match curl_init()
            return "FAIL: curl_setopt(CURLOPT_URL)";
          }
          if ((!ini_get('open_basedir') && !ini_get('safe_mode')) || $redirects < 1) {
            curl_setopt($ch, CURLOPT_USERAGENT, '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.11) Gecko/20071204 Ubuntu/7.10 (gutsy) Firefox/2.0.0.11');
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
            //curl_setopt($ch, CURLOPT_REFERER, 'http://domain.com/');
            if( !curl_setopt($ch, CURLOPT_HEADER, $curlopt_header)) return "FAIL: curl_setopt(CURLOPT_HEADER)";
            if( !curl_setopt($ch, CURLOPT_FOLLOWLOCATION, $redirects > 0)) return "FAIL: curl_setopt(CURLOPT_FOLLOWLOCATION)";
            if( !curl_setopt($ch, CURLOPT_FILE, $fp) ) return "FAIL: curl_setopt(CURLOPT_FILE)";
            if( !curl_setopt($ch, CURLOPT_MAXREDIRS, $redirects) ) return "FAIL: curl_setopt(CURLOPT_MAXREDIRS)";
    
            return curl_exec($ch);
        } else {
            curl_setopt($ch, CURLOPT_USERAGENT, '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.11) Gecko/20071204 Ubuntu/7.10 (gutsy) Firefox/2.0.0.11');
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
            //curl_setopt($ch, CURLOPT_REFERER, 'http://domain.com/');
            if( !curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false)) return "FAIL: curl_setopt(CURLOPT_FOLLOWLOCATION)";
            if( !curl_setopt($ch, CURLOPT_FILE, $fp) ) return "FAIL: curl_setopt(CURLOPT_FILE)";
            if( !curl_setopt($ch, CURLOPT_HEADER, true)) return "FAIL: curl_setopt(CURLOPT_HEADER)";
            if( !curl_setopt($ch, CURLOPT_RETURNTRANSFER, true)) return "FAIL: curl_setopt(CURLOPT_RETURNTRANSFER)";
            if( !curl_setopt($ch, CURLOPT_FORBID_REUSE, false)) return "FAIL: curl_setopt(CURLOPT_FORBID_REUSE)";
            curl_setopt($ch, CURLOPT_USERAGENT, '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.11) Gecko/20071204 Ubuntu/7.10 (gutsy) Firefox/2.0.0.11');
        }
          // if( !curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true) ) return "FAIL: curl_setopt(CURLOPT_FOLLOWLOCATION)";
          // if( !curl_setopt($ch, CURLOPT_FILE, $fp) ) return "FAIL: curl_setopt(CURLOPT_FILE)";
          // if( !curl_setopt($ch, CURLOPT_HEADER, 0) ) return "FAIL: curl_setopt(CURLOPT_HEADER)";
          if( !curl_exec($ch) ) return "FAIL: curl_exec()";
          curl_close($ch);
          fclose($fp);
          return "SUCCESS: $file [$url]";
        }
        else return "FAIL: fopen()";
      }
      else return "FAIL: curl_init()";
    }
    
  8. ==============================

    8.3 가지 방법이 있습니다.

    3 가지 방법이 있습니다.

    여기에서 예제를 찾을 수 있습니다.

  9. ==============================

    9.PHP 4 & 5 솔루션 :

    PHP 4 & 5 솔루션 :

    readfile ()은 대용량 파일을 보낼 때도 메모리 문제를 나타내지 않습니다. fopen 랩퍼가 사용 가능하면이 기능으로 URL을 파일 이름으로 사용할 수 있습니다.

    http://php.net/manual/en/function.readfile.php

  10. ==============================

    10.php copy ()에서 간단한 방법을 사용하십시오.

    php copy ()에서 간단한 방법을 사용하십시오.

    copy($source_url, $local_path_with_file_name);
    

    참고 : 대상 파일이 이미 있으면 덮어 씁니다.

    PHP copy () 함수

    특별 참고 사항 : 대상 폴더에 대해 권한 777을 설정하는 것을 잊지 마십시오.

  11. from https://stackoverflow.com/questions/3938534/download-file-to-server-from-url by cc-by-sa and MIT license