在HTML标记中添加PHP

时间:2016-07-06 18:31:25

标签: php html tags

我可以在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代码作为标题放在标签中。 有可能吗?

2 个答案:

答案 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>