在PHP中将变量指定为HTML图像源路径(<img src="variable_name"/>)?

时间:2016-01-23 19:28:02

标签: php html image variables

我正在阅读一个存储在临时目录中的图像文件。

<img width=400 height=400 align="bottom" src= " <?php echo $JobDir.'/venndiagram.png' ?>" alt="">

其中$JobDir是具有图像路径的PHP变量。但上面不起作用。

3 个答案:

答案 0 :(得分:3)

像这样设置 src

<img width=400 height=400 align="bottom" src="<?php echo $JobDir ?>/venndiagram.png" alt="">

如果您的$JobDir

$JobDir = 'path/to/folder/'; # then remove slash(/) on here >/ve
                         ^
$JobDir = 'path/to/folder'; # then Just keep it as it is
                         ^

答案 1 :(得分:1)

我认为阿卜杜拉的回答是正确的。只是他忘了在变量之后给出分号

<img width=400 height=400 align="bottom" src="<?php echo $JobDir; ?>/venndiagram.png" alt="">

答案 2 :(得分:-1)

使用echo代替:

<?php echo $JobDir?>

注意:如果您未启用short_open_tag,则必须使用<html/>