if($page_name == "top_sites"){
$page_text = "<a href="http://www.mysite.com/top-site">Top 200</a>";
}
此代码不起作用 请帮我纠正一下
答案 0 :(得分:4)
您需要逃避"
所以只需在他们面前放一个\
:
$page_text = "<a href=\"http://www.mysite.com/top-site\">Top 200</a>";
或者你可以在字符串周围使用单引号:
$page_text = '<a href="http://www.mysite.com/top-site">Top 200</a>';
答案 1 :(得分:0)
if($page_name == "top_sites"){
$page_text = '<a href="http://www.mysite.com/top-site">Top 200</a>';
}