我使用if函数来显示副本,但是这个副本必须用双引号括起来,我不能让它工作。请帮助。
代码
$currentpage = $_SERVER['REQUEST_URI'];
if ($currentpage == "/room/penthouse-suite/"){
echo "<div class='text-center text-emphasis text-lg'>"test penthouse"</div>";
}
所以在我的页面上它应该显示---&gt; &#34;测试阁楼&#34;
答案 0 :(得分:5)
您可以使用反斜杠简单地转义字符。
$currentpage = $_SERVER['REQUEST_URI'];
if ($currentpage == "/room/penthouse-suite/"){
echo "<div class='text-center text-emphasis text-lg'>\"test penthouse\"</div>";
}