美文网首页17.11 PHP入门
函数详解03 htmlspecialchars()、htmlsp

函数详解03 htmlspecialchars()、htmlsp

作者: 海野夏桑 | 来源:发表于2017-12-06 23:42 被阅读8次
    • htmlspecialchars(),将预定义字符如 “< 小于” 、 “> 大于” 、单引、双引、和、或等等转换成html实体。
        $str = 'this is some <bold>important</bold> text';
        echo $str;    //this is some important text
        echo '<br>';
        echo htmlspecialchars($str);    //this is some <bold>important</bold> text
      
    • htmlspecialchars_decode(),就是htmlspecialchars()的反函数,将html实体字符转换成预定义字符
    • round(),四舍五入并且转换

    相关文章

      网友评论

        本文标题:函数详解03 htmlspecialchars()、htmlsp

        本文链接:https://www.haomeiwen.com/subject/jvhrixtx.html