在 PHP 中将 HTML 重新处理为单行字符串的最佳方法是什么?
我正在开发一个 WordPress 插件,它将帖子和相关数据导出为制表符分隔的文本格式。它即将完成,但我正在努力寻找将 HTML 重新处理为单个字符串的最佳方法。
我使用 preg_replace 和 htmlentities 的组合,但它变得有点混乱。
我确信一定有一种首选方法可以做到这一点,所以我想我应该和你确认一下?我在谷歌上找不到任何合适的东西。
I'm working on a WordPress plugin that exports posts and associated data into a tab-seperated text format. It's almost finished, but I'm struggling to find the best method to re-process HTML into single strings.
I'm using a combination of preg_replace and htmlentities, but it's getting a little messy.
I'm sure there must be a preferred method for doing this, so I thought I would check with you? I can't find anything suitable on Google.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有单一的可靠方法,但一些简单的正则表达式可以解决这个问题:
There's no single sure fire way but some simple regex would do the trick:
你考虑过base64编码吗?
Have you considered base64 encoding?