当前位置:Gxlcms > PHP教程 > php去除html标签获得输入纯文本文档strip_tags

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

时间:2021-07-01 10:21:17 帮助过:20人阅读

<?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

人气教程排行