在 PHP 中将 HTML 重新处理为单行字符串的最佳方法是什么?

发布于 2024-09-24 08:20:52 字数 201 浏览 2 评论 0原文

我正在开发一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

高速公鹿 2024-10-01 08:20:52

没有单一的可靠方法,但一些简单的正则表达式可以解决这个问题:

// remove convert newlines and multiple spaces into 1 space
$html = preg_replace("/\s+|\n+|\r/", ' ', $html);

There's no single sure fire way but some simple regex would do the trick:

// remove convert newlines and multiple spaces into 1 space
$html = preg_replace("/\s+|\n+|\r/", ' ', $html);
树深时见影 2024-10-01 08:20:52

你考虑过base64编码吗?

$foo = base64_encode($data);

Have you considered base64 encoding?

$foo = base64_encode($data);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文