7

私が取り組んでいるプロジェクトの後期段階で深刻な問題があります。

ユーザーがリンクをクリックすることでハードドライブに画像を自動的にダウンロードできるようにするPHP関数を作成しました。しかし、画像がWebサイトのサーバーにアップロードされ、完全なサーバーアドレスであることがわかっていたため、これは簡単でした。例えば:"home/clients/websites/w_apo/public_html/wp-content/uploads/image.jpg"

しかし今、クライアントは自分のアドレスから画像のURLを貼り付けhttp://www.something.com/image.jpg、フロントエンドのリンクをクリックしてその画像を自動的にダウンロードできる機能を望んでいます。

私はプログラミングのこの分野ではちょっと新しいので、本当にあなたの助けが必要です。リンク、アドバイス、リソースは大歓迎です。

ありがとう!

これはダウンロードのための私の現在の機能です:

download_file($_GET['file']);

/******************************************************************/

function download_file( $fullPath ){

  // Must be fresh start
  if( headers_sent() )
    die('Headers Sent');

  // Required for some browsers
  if(ini_get('zlib.output_compression'))
    ini_set('zlib.output_compression', 'Off');

  // File Exists?
  if( file_exists($fullPath) ){

    // Parse Info / Get Extension
    $fsize = filesize($fullPath);
    $path_parts = pathinfo($fullPath);
    $ext = strtolower($path_parts["extension"]);

    // Determine Content Type
    switch ($ext) {
      case "pdf": $ctype="application/pdf"; break;
      case "exe": $ctype="application/octet-stream"; break;
      case "zip": $ctype="application/zip"; break;
      case "doc": $ctype="application/msword"; break;
      case "xls": $ctype="application/vnd.ms-excel"; break;
      case "ppt": $ctype="application/vnd.ms-powerpoint"; break;
      case "gif": $ctype="image/gif"; break;
      case "png": $ctype="image/png"; break;
      case "jpeg":
      case "jpg": $ctype="image/jpg"; break;
      default: $ctype="application/force-download";
    }

    header("Pragma: public"); // required
    header("Expires: 0");
    header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
    header("Cache-Control: private",false); // required for certain browsers
    header("Content-Type: $ctype");
    header("Content-Disposition: attachment; filename=\"".basename($fullPath)."\";" );
    header("Content-Transfer-Encoding: binary");
    header("Content-Length: ".$fsize);
    ob_clean();
    flush();
    readfile( $fullPath );

  } else
    die('File Not Found');

}
4

1 に答える 1

15

いくつかのオプションがあります。#1 使用file_get_contents。これは最善の方法ではありませんが、うまくいくでしょう。

<?php
//Get the file
$content = file_get_contents("http://example.com/image.jpg");


//Store in the filesystem.
$fp = fopen("/location/to/save/image.jpg", "w");
fwrite($fp, $content);
fclose($fp);
?>

オプション #2 cURL を使用します。

この例を参照してください

于 2012-06-07T01:03:32.157 に答える