正如我所发现的
stream_filter_append($cin, 'convert.quoted-printable-decode');
和
stream_filter_append($cin, 'convert.base64-decode');
不要逐行解码流。这些函数都首先读取整个流直到 EOF,然后将其数据解码为字符串。
有没有办法逐行解码base64和quoted-printable编码流?
正如我所发现的
stream_filter_append($cin, 'convert.quoted-printable-decode');
和
stream_filter_append($cin, 'convert.base64-decode');
不要逐行解码流。这些函数都首先读取整个流直到 EOF,然后将其数据解码为字符串。
有没有办法逐行解码base64和quoted-printable编码流?