所以,我有这个PHP变量:
$text = 'Click on this';
echo '< a href="Google.com"> $text < /a>'
我如何拥有&#34;点击此处&#34;作为超链接文本?
到目前为止,输出在HTML中显示为$ text。
答案 0 :(得分:4)
两个错误:
示例:
$text = 'Click on this';
echo "<a href=\"Google.com\"> $text </a>";
或
$text = 'Click on this';
echo '<a href="Google.com"> ', $text, ' </a>';
或
$text = 'Click on this';
echo '<a href="Google.com"> ' . $text . ' </a>';
或
$text = 'Click on this';
printf('<a href="Google.com"> %s </a>', $text);