函数剥去字符串中的 HTML、XML 以及 PHP 的标签
strip_tags(string,allow)
如:
echo strip_tags("Hello <b><i>world!</i></b>","<b>"); 返回: Hello <b>world!</b>