使用cakephp如何在foreach循环中显示存储在数据库中的图像?

时间:2014-11-01 23:00:13

标签: php database loops cakephp foreach

我是Cakephp的新手,我想知道如何在foreach循环中回显数据库中的图像? 我该怎么做?什么是正确的方法? 我的所有图片都在webroot文件夹中。

<?php if ( isset($beefwellington) ){ ?>
       <?php foreach ($beefwellington as $wellington): ?>
        <h1><?php echo $wellington['Beef']['genre']; ?></h1>
        <h2><?php echo $wellington['Beef']['story']; ?></h2>
            <?php endforeach; ?>
            <?php } ?>

这就是我的尝试:

<?php echo $html->image('app/webroot/img' .$wellington['Beef']['picture'],    array('alt' => 'story image'));

在我的数据库中,图像存储为'pumkin.jpg'

1 个答案:

答案 0 :(得分:0)

如果您的图片位于app / webroot / img文件夹中,那么您只需要这样写:

<?php echo $this->Html->image($wellington['Beef']['picture'], array('alt' => 'story image')); ?>