gpt4 book ai didi

php - 从数据库中回显多个图像 URL

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

我正在尝试从数据库的一列中回显多个图像网址。我的回显脚本回显来自数据库的图像数量

但是它无法从文件夹中获取每个图像的主图像,仅显示相当于数据库图像路径的框,这是我的代码。提前致谢

注意:在将图像路径插入数据库时​​使用逗号分隔图像

<?php
$q="praise"; //Folder path
$get_pro="SELECT * FROM `a`";

$run_pro = mysqli_query($con, $get_pro);

while($row_pro=mysqli_fetch_array($run_pro)){
$a=$row_pro['q'];

$str= $row_pro["image"];
$array = explode(',', $str);

foreach ($array as $item) {

echo "<img src=\"".$q."/".$item . "\" height=\"200\" width=\"200\"/>"; //only shows image boxes expecting images but calling from the folder is the problem
}
}
?>

最佳答案

如果你的图片有绝对路径,试试这个

   <?php
$q="praise"; //Folder path
$get_pro="SELECT * FROM `a`";

$run_pro = mysqli_query($con, $get_pro);

while($row_pro=mysqli_fetch_array($run_pro)){

$a=$row_pro['q'];

$str= $row_pro["image"];
$array = explode(',', $str);

foreach ($array as $item) {

// absolute path of the image
echo "<img src='".$q.DIRECTORY_SEPARATOR.$item."' height='200' width='200'/>";
}
}

?>

关于php - 从数据库中回显多个图像 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38406459/

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