Quantcast
Channel: PHP+MySQL –任鸟飞— 专注网页设计 海阔凭鱼跃 天高任鸟飞
Viewing all articles
Browse latest Browse all 28

PHP strip_tags() 函数剥去(可以保留指定的标签)字符串中的 HTML、XML 以及 PHP 的标签

$
0
0

PHP 函数:strip_tags(string,allow)

  • string 必需。规定要检查的字符串。
  • allow 可选。规定允许的标签。这些标签不会被删除

例子:

<?php
echo strip_tags("Hello <b><i>world!</i></b>","<b>");
?>

输出结果:Hello world!

应用场景:评论留言处理,索引文章内指定内容


Viewing all articles
Browse latest Browse all 28

Trending Articles