从富文本获取纯文本

function getSimpleText($str = '')
{
    if (!empty($str)) {
        $content_02 = htmlspecialchars_decode($str);//把一些预定义的 HTML 实体转换为字符
        $content_03 = str_replace(" ", "", $content_02);//将空格替换成空
        $contents = strip_tags($content_03);//函数剥去字符串中的 HTML、XML 以及 PHP 的标签,获取纯文本内容
    } else {
        $contents = '';
    }
    return $contents;
}

你可能感兴趣的:(从富文本获取纯文本)