PHP 8.3.4 Released!

mailparse_stream_encode

(PECL mailparse >= 0.9.0)

mailparse_stream_encode Streams data from source file pointer, apply encoding and write to destfp

Description

mailparse_stream_encode(resource $sourcefp, resource $destfp, string $encoding): bool

Streams data from the source file pointer, apply encoding and write to the destination file pointer.

Parameters

sourcefp

A valid file handle. The file is streamed through the parser.

destfp

The destination file handle in which the encoded data will be written.

encoding

One of the character encodings supported by the mbstring module.

Return Values

Returns true on success or false on failure.

Examples

Example #1 mailparse_stream_encode() example

<?php

// email.eml contents: hello, this is some text=hello.
$fp = fopen('email.eml', 'r');

$dest = tmpfile();

mailparse_stream_encode($fp, $dest, "quoted-printable");

rewind($dest);

// Display new file contents
fpassthru($dest);

?>

The above example will output:

hello, this is some text=3Dhello.

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top