保存来自PHP URL的图像

我需要将一个图像从PHP URL保存到我的电脑。 比方说,我有一个页面, http://example.com/image.php ,拿着一个“花”图像,没有别的。 我怎样才能保存这个图像从一个新的名称(使用PHP)的URL?

如果您将allow_url_fopen设置为true

 $url = 'http://example.com/image.php'; $img = '/my/folder/flower.gif'; file_put_contents($img, file_get_contents($url)); 

否则使用cURL :

 $ch = curl_init('http://example.com/image.php'); $fp = fopen('/my/folder/flower.gif', 'wb'); curl_setopt($ch, CURLOPT_FILE, $fp); curl_setopt($ch, CURLOPT_HEADER, 0); curl_exec($ch); curl_close($ch); fclose($fp); 
 copy('http://example.com/image.php', 'local/folder/flower.jpg'); 
 $content = file_get_contents('http://example.com/image.php'); file_put_contents('/my/folder/flower.jpg', $content); 

在这里你可以看到,这个例子将远程图像保存到image.jpg。

 function save_image($inPath,$outPath) { //Download images from remote server $in= fopen($inPath, "rb"); $out= fopen($outPath, "wb"); while ($chunk = fread($in,8192)) { fwrite($out, $chunk, 8192); } fclose($in); fclose($out); } save_image('http://www.someimagesite.com/img.jpg','image.jpg'); 

Vartec用cURL 的回答对我来说不起作用。 由于我的具体问题,情况有所改善。

例如,

当服务器上有redirect时(例如,当您试图保存Facebook个人资料图片时),您将需要以下选项集:

 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); 

完整的解决scheme变成:

 $ch = curl_init('http://example.com/image.php'); $fp = fopen('/my/folder/flower.gif', 'wb'); curl_setopt($ch, CURLOPT_FILE, $fp); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_exec($ch); curl_close($ch); fclose($fp); 

我无法获得任何其他解决scheme的工作,但我可以使用wget:

 $tempDir = '/download/file/here'; $finalDir = '/keep/file/here'; $imageUrl = 'http://www.example.com/image.jpg'; exec("cd $tempDir && wget --quiet $imageUrl"); if (!file_exists("$tempDir/image.jpg")) { throw new Exception('Failed while trying to download image'); } if (rename("$tempDir/image.jpg", "$finalDir/new-image-name.jpg") === false) { throw new Exception('Failed while trying to move image file from temp dir to final dir'); } 
 $img_file='http://www.somedomain.com/someimage.jpg' $img_file=file_get_contents($img_file); $file_loc=$_SERVER['DOCUMENT_ROOT'].'/some_dir/test.jpg'; $file_handler=fopen($file_loc,'w'); if(fwrite($file_handler,$img_file)==false){ echo 'error'; } fclose($file_handler); 

file() PHP手册

 $url = 'http://mixednews.ru/wp-content/uploads/2011/10/0ed9320413f3ba172471860e77b15587.jpg'; $img = 'miki.png'; $file = file($url); $result = file_put_contents($img, $file) 

创build一个名为images的文件夹,位于您打算创build的php脚本的path中。 确保它对每个人都有写权限,否则脚本将无法工作(它将无法将file upload到目录中)。