流解码base64和引用可在PHP中打印

流解码base64和引用可在PHP中打印,php,base64,decode,quoted-printable,Php,Base64,Decode,Quoted Printable,我发现 stream_filter_append($cin, 'convert.quoted-printable-decode'); 及 不要逐行解码流。这些函数都首先读取整个流直到EOF,然后将其数据解码为字符串 有没有办法逐行解码base64和引用的可打印编码流?嗯,这是个错误。这些过滤器按顺序逐块转换流 stream_filter_append($cin, 'convert.base64-decode');

我发现

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

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


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

嗯,这是个错误。这些过滤器按顺序逐块转换流

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