在php中显示html代码

时间:2012-02-11 10:04:06

标签: php html

这是我的代码:

<?php 
   $baseurl = '<base_url>';
?>
<font class="font_style"><?php echo $baseurl;?></font>

当我试图显示变量$ baseurl时,它需要一个html标签,什么都不会显示

但我想显示为:

<font class="font_style"><base_url></font>

我该怎么做?

3 个答案:

答案 0 :(得分:3)

<font class="font_style"><?php echo htmlentities($baseurl);?></font>

答案 1 :(得分:2)

<?php echo htmlspecialchars ($baseurl);?>

检查htmlspecialcharsdochtmlentitiesdoc

答案 2 :(得分:1)

使用html实体&lt;&gt;代替特殊字符<>

其他一些角色也是如此,最突出的是&amp;而不是&。以下是您的参考:

http://www.w3schools.com/html/html_entities.asp
http://www.w3schools.com/tags/ref_entities.asp