将图像从一个网站复制到我的网站?

时间:2011-09-06 02:29:45

标签: php

我想建立一个网站,您可以在其中提交外部图像列表,并接收包含所有图像的zip。

我知道如何使用PHP制作zip文件,但我不知道如何将外部文件保存到我的服务器。我会搜索,但我不知道如何用这句话来表达。

1 个答案:

答案 0 :(得分:2)

处于高水平......

$externalFile = 'http://example.com/image.jpg';

file_put_contents(basename($externalFile), file_get_contents($externalFile));

当然,您需要处理错误并确保网址图片(使用GD或类似网址)。