PHP变量为HTML链接,PHP函数为HREF

时间:2013-11-17 07:07:38

标签: php html

以下是代码:

$vote_up = '<a href="<?php amc_comment_vote("up") ?>">Vote Up</a>';

我只是想让我的PHP函数插入一行PHP作为href的链接。但它不能正常工作。我怎么能这样做?

快速更新:我得到了一些很好的答案,但是我希望点击时触发该功能(因此需要<?php标签)。

2 个答案:

答案 0 :(得分:1)

您正在尝试在字符串上下文中使用PHP标记。它们没有意义,因此不会产生你需要的输出。

只需使用字符串连接:

$vote_up = '<a href="' . amc_comment_vote("up") . '">Vote Up</a>';

或使用sprintf()(更清洁一点):

$vote_up = sprintf('<a href="%s">Vote Up</a>', amc_comment_vote("up"));

答案 1 :(得分:1)

这也是一种可能性:

 $vote_up = "<a href='".amc_comment_vote("up")."'>Vote Up</a>";