这是我的代码:
$footer_rotem =
<<<DELIMETER
<div class="tile red"><img src="http://localhost/be/wp-content/plugins/Rotem%20Gallery/img/4.png"></div>
<div class="tile red"><img src="http://localhost/be/wp- content/plugins/Rotem%20Gallery/img/5.jpg"></div>
DELIMETER;
return $footer_rotem;
我想在img src中添加一些PHP,如:
<img src="<?php echo 'url' ?>"/>
但是我怎么能在这里做到这一点 -
<<<DELIMETER
答案 0 :(得分:0)
你可以像这样使用它heredoc也像双引号字符串,所以你可以直接使用变量。
<<<DELIMETER
<div class="tile red"><img src="$url"></div>
<div class="tile red"><img src="$url"></div>
DELIMETER;