这是我的代码。
<?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
答案 0 :(得分:0)
您已经处于print
HTML的过程中,所以只需像href
中那样逃避该部分:
<?php print "<a href=\"http://example.com/ea.php?v=" . urlencode($url) . "&t=" . $p . "\">" . $this->lang('learn_cn') . "</a>" ?>