programing

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

kingscode 2022. 10. 9. 11:33
반응형

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

음, 이건 꽤 간단해 보이는데, 정말 그래요.서버에 파일을 다운로드하려면 다음 작업만 하면 됩니다.

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

단 한 가지 문제가 있습니다.100MB와 같은 대용량 파일이 있다면 어떻게 하시겠습니까?그러면 메모리가 부족해져 파일을 다운로드할 수 없게 됩니다.

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

PHP 5.1.0 이후, 는 스트림 핸들(stream-handle)을 전달함으로써 하나하나의 쓰기를 지원합니다.$data파라미터:

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

매뉴얼:

데이터(이것이 두 번째 인수)가 스트림리소스일 경우 해당 스트림의 나머지 버퍼는 지정된 파일에 복사됩니다.이는 를 사용하는 경우와 비슷합니다.

(고마워 Hakre)

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);
    }
}

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데이터를 가져올 때 쓰는 옵션, 즉 버퍼링되지 않습니다.

방탕자의 대답이 통하지 않았어요받았습니다missing fopen in CURLOPT_FILE 자세한 것은, 을 참조해 주세요.

이것은 로컬 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);
        $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
        curl_close($ch);
        return $httpcode;
    }
}

        
  1. 대상 서버에 "downloads"라는 폴더를 만듭니다.
  2. [이 코드] 저장처.php대상 서버에서 파일 및 실행

다운로더:

<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> 
set_time_limit(0); 
$file = file_get_contents('path of your file');
file_put_contents('file.ext', $file);

php의 간단한 메서드 사용copy()

copy($source_url, $local_path_with_file_name);

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

PHP copy() 함수

참고: 대상 폴더에 대한 권한 777을 설정해야 합니다.로컬 머신에 다운로드 할 때 이 방법을 사용합니다.

특기사항: 777은 Unix 기반 시스템에서 소유자, 그룹 모든 사용자에게 완전한 읽기/쓰기/실행 권한을 부여하는 권한입니다.일반적으로 웹 서버 상의 공개로부터 숨길 필요가 별로 없는 자산에 대해 이 권한을 부여합니다.예: 이미지 폴더.

3가지 방법이 있습니다.

  1. file_get_module 및 file_put_module
  2. 열리다

여기서 예를 찾을 수 있어요.

파일을 다운로드 할 때 사용합니다.

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()";
}

PHP 4 및 5 솔루션:

readfile()은 대용량 파일을 보내는 경우에도 메모리 문제를 발생시키지 않습니다.fopen wrapper가 유효하게 되어 있는 경우는, URL 를 이 함수의 파일명으로 사용할 수 있습니다.

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

심플한 솔루션:

<?php 
exec('wget http://someurl/file.zip');

최선의 해결책

시스템에 aria2c를 설치하다

 echo exec("aria2c \"$url\"")

언급URL : https://stackoverflow.com/questions/3938534/download-file-to-server-from-url

반응형