如何将 0 到 300 个字符以及 301 个字符的所有标签剥离为仅允许某些标签
我想知道如何在给定的也包含 HTML 的帖子上,从
strip_tags($entry->description);
char 0 到 300 以及从 301 到帖子末尾仅允许
strip_tags($entry->description, '<b><p><br>');
我正在寻找不过,这是一种不会降低性能的方法,因为我希望页面加载速度更快。
谢谢。
I was wondering how on a given post that contains HTML also, to
strip_tags($entry->description);
from char 0 to 300 and from 301 to end of post allow only <b><p><br>
strip_tags($entry->description, '<b><p><br>');
I am looking for a way that does not kill performance though, because I want the page to load fast.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需 strip_tags() 分开两个部分:
Just strip_tags() the two parts separately: