我不确定php里面

时间:2016-03-20 19:04:10

标签: php

这是我的代码。

<?php print "<a href=\"http://example.com/ea.php?v=".urlencode($url)."&t=".$p."\"><?php echo $this->lang('learn_cn')?></a>" ?>

它附带空白无显示。

<?php echo $this->lang('learn_cn')?>

使这项工作的正确方法是什么。 TY

1 个答案:

答案 0 :(得分:0)

您已经处于print HTML的过程中,所以只需像href中那样逃避该部分:

<?php print "<a href=\"http://example.com/ea.php?v=" . urlencode($url) . "&t=" . $p . "\">" . $this->lang('learn_cn') . "</a>" ?>