使用 PHP 清理内容的最佳方法?
“净化”内容的最佳方法是什么?示例...
示例 - 清理之前:
Morbi mollis ante vitae massa suscipit a tempus est pellentesque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla mattis iaculis consectetur.
Morbi mollis ante vitae est pellentesque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla mattis iaculis consectetur.
示例 - 清理之后:
<p>Morbi mollis ante vitae massa suscipit a tempus est pellentesque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla mattis iaculis consectetur.</p>
<p>Morbi mollis ante vitae est pellentesque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla mattis iaculis consectetur.</p>
它应该做什么
- 它应该添加 p 标签而不是换行符喜欢。
- 它应该删除空格,例如三重空格
- 。它应该删除双换行符。
- 它应该删除选项卡。
- 如果有的话,它应该删除内容之前的换行符和空格。
- 如果有的话,它应该删除内容后面的换行符和空格。
我知道我使用了 str_replace 函数,它应该是一个更好的解决方案吗?
我希望函数看起来像这样:
function sanitize($content)
{
// Do the magic!
return $content;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
通过 Textile 解释器、Markdown 或任何其他 人性化标记语言适合您的需求。
何苦呢?当 HTML 呈现为文档时,多个空白字符会减少为单个空格,不是吗?大多数问题都会自行解决。
Run it through something like the Textile interpreter, or Markdown, or any another humane markup language which suits your needs.
Why bother? When HTML is rendered as a document, multiple white space characters are reduced to a single space, no? Most of your problems solve themselves.
示例:
输出:
Example:
Output:
看一下 Sanitize 类rel="nofollow noreferrer">CakePHP。
Take a look at Sanitize class of CakePHP.
整齐的!!
zend 有一篇相当过时的文章,但请查看他们给出的示例:
http://devzone.zend .com/article/761
Tidy!!
There is a pretty outdated article on zend, but check out the example they give:
http://devzone.zend.com/article/761