我在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 ?>
请指导我如何解决它。
答案 0 :(得分:1)
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 ?> ...
作为例子。