如何通过 PHP 保存图像?
How can I save an image by PHP?
我有一个生成图像的脚本。到目前为止我是这样使用它的:
<img src='/img/avatar/identicon.php?size=35&hash=64d134jf23tgr7k' height='40' width='40'>
现在我试图将它作为图像存储在这个路径中:
/img/avatar/$id.jpg
然后像这样使用它:
<img src='/img/avatar/$id.jpg' height='40' width='40'>
如何将该图像作为真实图像存储在文件夹中?
注意:我有id
作为动态变量,我想用它作为图片的名字。
您需要先保存图像,这是一种方法:
$id = "someID.jpg";
file_put_contents("img/avatar/".$id, file_get_contents("http://somesite/img/avatar/identicon.php?size=35&hash=64d134jf23tgr7k"));
然后像这样使用它:
<img src='/img/avatar/<?=$id?>' height='40' width='40'>
我有一个生成图像的脚本。到目前为止我是这样使用它的:
<img src='/img/avatar/identicon.php?size=35&hash=64d134jf23tgr7k' height='40' width='40'>
现在我试图将它作为图像存储在这个路径中:
/img/avatar/$id.jpg
然后像这样使用它:
<img src='/img/avatar/$id.jpg' height='40' width='40'>
如何将该图像作为真实图像存储在文件夹中?
注意:我有id
作为动态变量,我想用它作为图片的名字。
您需要先保存图像,这是一种方法:
$id = "someID.jpg";
file_put_contents("img/avatar/".$id, file_get_contents("http://somesite/img/avatar/identicon.php?size=35&hash=64d134jf23tgr7k"));
然后像这样使用它:
<img src='/img/avatar/<?=$id?>' height='40' width='40'>