PHP中的流解码base64和quoted-printable

发布于 2024-10-19 03:44:16 字数 274 浏览 1 评论 0原文

正如我发现的那样

stream_filter_append($cin, 'convert.quoted-printable-decode');

stream_filter_append($cin, 'convert.base64-decode');

不要逐行解码流。这些函数首先读取整个流直到 EOF,然后将其数据解码为字符串。

有没有办法逐行解码base64和引用打印编码流?

As i have discovered

stream_filter_append($cin, 'convert.quoted-printable-decode');

and

stream_filter_append($cin, 'convert.base64-decode');

don't decode stream line-by-line. These functions both first read the whole stream until EOF and then decode its data as string.

Is there any soution to decode base64 and quoted-printable encoded streams line-by-line?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

墨落成白 2024-10-26 03:44:16

好吧,这是一个错误。这些过滤器执行按顺序逐块转换流。

Well, it was a mistake. These filters do convert streams sequentially, block by block.

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