Php/docs/function.mailparse-msg-extract-part-file
mailparse_msg_extract_part_file
(PECL mailparse >= 0.9.0)
mailparse_msg_extract_part_file — Extracts/decodes a message section
说明
mailparse_msg_extract_part_file
( resource $mimemail
, mixed $filename
[, callable $callbackfunc
] ) : string
Extracts/decodes a message section from the supplied filename.
The contents of the section will be decoded according to their transfer encoding - base64, quoted-printable and uuencoded text are supported.
参数
mimemailA valid
MIMEresource, created with mailparse_msg_create().filenameCan be a file name or a valid stream resource.
callbackfuncIf set, this must be either a valid callback that will be passed the extracted section, or
nullto make this function return the extracted section.If not specified, the contents will be sent to "stdout".
返回值
If callbackfunc is not null returns true on
success.
If callbackfunc is set to null, returns the
extracted section as a string.
Returns false on error.
参见
- mailparse_msg_extract_part() - Extracts/decodes a message section
- mailparse_msg_extract_whole_part_file() - Extracts a message section including headers without decoding the transfer encoding