欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php去除html标签获得输入纯文本文档strip_tags

程序员文章站 2023-12-31 23:55:04
...
<?php
$text = '
Test paragraph.
Other text';
echo strip_tags($text);
echo "\n";

// Allow

echo strip_tags($text, '
');
?>

上例将输出: Test paragraph. Other text

Test paragraph.

Other text

上一篇:

下一篇: