gpt4 book ai didi

php生成图像?

转载 作者:行者123 更新时间:2023-11-29 07:04:09 24 4
gpt4 key购买 nike

我如何使用 php 从数据库中获取图像 url(基于用户 ID)并将其显示为图像。 http://mysite.com/img.php?id=338576

下面的代码显示了一个 php 脚本进入数据库,检查特定用户(使用上面链接中的 id)是否存在,然后从该用户的行中获取图像 url。

 <?php
//connect to database
include ("connect.php");

//Get the values
$id = mysql_real_escape_string($_GET['id']);


//get the image url
$result = mysql_query("SELECT * FROM users WHERE id='$id'")
or die(mysql_error());
$row = mysql_fetch_array($result);
if($row)
{
$img_url = row['imgurl'];
mysql_close($connect);

}
else{
}

?>

$Img_url 是一个实际的图片链接 www.asite.com/image.jpg

问题是我如何使用 php 从图像链接 ($img_url) 制作图像? http://mysite.com/img.php?id=338576 会变成图片。

我希望有人能指导我

谢谢!

最佳答案

最简单的方法:

header('Location: url/to/image');

您还可以代理请求,这会占用您的带宽:

echo(file_get_contents('url/to/image'));

关于php生成图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8381144/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com