函数详解03 htmlspecialchars()、htmlsp
2017-12-06 本文已影响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(),四舍五入并且转换