如何使用include()将图像包含在<img src="

时间:2018-12-17 22:10:07

标签: php html html5

="" 中,我需要HTML和PHP的帮助。如何在<img src"">中使用include()?

示例:

<?php

some code here

$page_banner = $_SERVER['DOCUMENT_ROOT'].'/img/page-banner.png';

some code here

?>

some code here

<img src=<?php include($page_banner); ?>>

但是不幸的是,它不起作用。我希望你能理解我想说的话。

对不起,英语不好。 Google帮了我。

2 个答案:

答案 0 :(得分:1)

您不需要\想要在这里简单地添加它。

<img src='<?php echo $page_banner; ?>'>

src =是图像的URI

答案 1 :(得分:1)

您可以将include()用于文件,而不用于变量。因此,只需使用不带include()的变量即可。

<img src='<?php echo $page_banner; ?>'>

不要忘记图像路径周围的引号。