1

疑問なんだけど。だから、これには2台のコンピューターがあり、1台にはxamppがインストールされ、もう1台にはインストールされていません(同じネットワーク)。どちらもウィンドウズXPです

そして、テスト用にこのスクリプトを作成して、ファイルをダウンロードします。

<?php
$txt = "http://www.branded3.com/wp-content/uploads/2011/05/Google_Chrome1.jpg";
$img = "01.jpg";
file_put_contents($img, file_get_contents($txt));
?>

xamppがインストールされているコンピューターでスクリプトを実行すると、完全に機能します。

しかし、私は別のコンピューターで実行していますが、動作していません。誰でもこの問題で私を助けることができますか?

4

1 に答える 1

1

イメージをプロキシしてダウンロードを促す非常に大まかな方法​​を次に示します。

<?php
$url = "http://www.branded3.com/wp-content/uploads/2011/05/Google_Chrome1.jpg";

//Get file
$source = file_get_contents($url);

//Image Mime types
$images = array('jpg'=>'image/jpg','png'=>'image/png','png'=>'image/png');
//Is it an image extention
if(in_array(substr($url,-3),$images)){
    $type = $images[substr($url,-3)];
}else{
    //No its somthing else
    $type = 'application/octet-stream';
}

//Set the headers
header('Content-Description: File Transfer');
header('Content-Type: '.$type);
header('Content-Disposition: attachment; filename='.basename($url));
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . sprintf("%u", strlen($source)));
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Expires: 0');
header('Pragma: public');

//echo the source
echo $source;
?>
于 2012-06-05T09:50:02.763 に答える