PHPfunction getPlainTextFromhtml($html){ // Remove the HTML tags $html = strip_tags($html); // Convert HTML entities to single characters $html = html_entity_decode($html, ENT_QUOTES, 'UTF-8'); $html_len = mb_strlen($html, 'UTF-8'); // Make the string the desired number of characters // Note that substr is not Good as it counts by bytes and not characters $html = mb_substr($html, 0, strlen($html), 'UTF-8'); return $html;}echo getPlainTextFromHtml('主任医师,教授,硕士生导师,中山医学院医疗系毕业。<\/p>'
);// 主任医师,教授,硕士生导师,中山医学院医疗系毕业。
--结束END--
本文标题: php:html富文本提取text普通文本内容
本文链接: https://lsjlt.com/news/413218.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0