语法:strip_tags(string,allow);
string必需,规定要检查的字符串。
allow可选,规定允许的标签,这些标签不会被删除。
注释:该函数始终会剥离HTML注释,这点无法通过allow参数改变。
实例:
$str = "Hello world!";
echo strip_tags($str);
echo '
';
echo strip_tags($str, '');
?>
输出结果:
Hello world!
Hello world!
http://www.bkjia.com/PHPjc/825223.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/825223.htmlTechArticle语法: strip_tags(string,allow); string必需,规定要检查的字符串。 allow可选,规定允许的标签,这些标签不会被删除。 注释: 该函数始终会剥...
Déclaration:Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn