我可以在HTML a
代码中使用PHP代码(用于动态内容吗?)
我有这样的代码:
<ul>
<li>
<a href="#" class="offset" title="The sun escaping the horizon">
<img src="img/2.jpg" alt="" class="imagequery">
</a>
</li>
</ul>
我需要将我的PHP代码作为标题放在标签中。 有可能吗?
答案 0 :(得分:2)
class Test {
public:
int test;
int& rtest; // Nope! = test;
Test() : test(), rtest(test) {} // <<<<<<<<<<<<<<<<<<
};
答案 1 :(得分:0)
<?php $title = "My Test Title"; ?>
<ul>
<li>
<a href="#" class="offset" title="<?php echo htmlspecialchars($title); ?>">
<img src="img/2.jpg" alt="" class="imagequery">
</a>
</li>
</ul>