嵌入标记中的PHP代码

时间:2010-05-17 12:22:27

标签: php html

我在PHP中使用embed标记,如下所示:

echo "<embed src='images/meccaAdhan.mp3' name='guitar' id='BGS_ID'  autostart='true' loop='false' width='2' height='0'></embed>";

我需要在图像之前添加此代码:

templates/<?php echo $this->template ?>

请指导我如何解决它。

2 个答案:

答案 0 :(得分:1)

使用string concatenation

echo "<embed src='templates/" . $this->template . "/images/meccaAdhan.mp3' ... >";

答案 1 :(得分:1)

有关可用的不同字符串操作,请参阅PHP: Strings

echo "<embed src=\"templates/{$this->template} ...

?><ebmed src="templates/<? echo $this->template ?> ...

作为例子。