显示html代码的函数_Ruby_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > Ruby > 显示html代码的函数

显示html代码的函数

 2011/1/2 10:31:48  joan0106  http://joan0106.javaeye.com  我要评论(0)
  • 摘要:php函数htmlspecialchars()<?php$html=htmlspecialchars("<ahref='text'>test</a>");echo$html;?>nl2br()把'\n'换行用<br/>or<br>代替插入内容example:<?phpechonl2br("anappleisred\nyouagreewithme");//anappleisred<br/>youagreewithme
  • 标签:HTML代码 函数 代码

php函数

function">htmlspecialchars()

<?php
  
    $html = htmlspecialchars("<a href='text'>test</a>");
    echo $html;
  
?>

?

nl2br()

?把'\n'换行用<br/>or<br>代替插入内容

?

example:

?

<?php
   echo nl2br("an apple is red \n you agree with me");
  
  //an apple is red<br/>
you agree with me
?>

?

?

?

?

发表评论
用户名: 匿名