Exceptions
5 days ago
apache.php
5 days ago
apcu.php
5 days ago
array.php
5 days ago
bzip2.php
5 days ago
calendar.php
5 days ago
classobj.php
5 days ago
com.php
5 days ago
cubrid.php
5 days ago
curl.php
5 days ago
datetime.php
5 days ago
dir.php
5 days ago
eio.php
5 days ago
errorfunc.php
5 days ago
exec.php
5 days ago
fileinfo.php
5 days ago
filesystem.php
5 days ago
filter.php
5 days ago
fpm.php
5 days ago
ftp.php
5 days ago
funchand.php
5 days ago
functionsList.php
5 days ago
gmp.php
5 days ago
gnupg.php
5 days ago
hash.php
5 days ago
ibase.php
5 days ago
ibmDb2.php
5 days ago
iconv.php
5 days ago
image.php
5 days ago
imap.php
5 days ago
info.php
5 days ago
ingres-ii.php
5 days ago
inotify.php
5 days ago
json.php
5 days ago
ldap.php
5 days ago
libxml.php
5 days ago
lzf.php
5 days ago
mailparse.php
5 days ago
mbstring.php
5 days ago
misc.php
5 days ago
msql.php
5 days ago
mysql.php
5 days ago
mysqli.php
5 days ago
mysqlndMs.php
5 days ago
mysqlndQc.php
5 days ago
network.php
5 days ago
oci8.php
5 days ago
opcache.php
5 days ago
openssl.php
5 days ago
outcontrol.php
5 days ago
password.php
5 days ago
pcntl.php
5 days ago
pcre.php
5 days ago
pdf.php
5 days ago
pgsql.php
5 days ago
posix.php
5 days ago
ps.php
5 days ago
pspell.php
5 days ago
readline.php
5 days ago
rpminfo.php
5 days ago
rrd.php
5 days ago
sem.php
5 days ago
session.php
5 days ago
shmop.php
5 days ago
simplexml.php
5 days ago
sockets.php
5 days ago
sodium.php
5 days ago
solr.php
5 days ago
spl.php
5 days ago
sqlsrv.php
5 days ago
ssdeep.php
5 days ago
ssh2.php
5 days ago
stream.php
5 days ago
strings.php
5 days ago
swoole.php
5 days ago
uodbc.php
5 days ago
uopz.php
5 days ago
url.php
5 days ago
var.php
5 days ago
xdiff.php
5 days ago
xml.php
5 days ago
xmlrpc.php
5 days ago
yaml.php
5 days ago
yaz.php
5 days ago
zip.php
5 days ago
zlib.php
5 days ago
mailparse.php
119 lines
| 1 | <?php |
| 2 | |
| 3 | namespace ProfilePressVendor\Safe; |
| 4 | |
| 5 | use ProfilePressVendor\Safe\Exceptions\MailparseException; |
| 6 | /** |
| 7 | * Extracts/decodes a message section from the supplied filename. |
| 8 | * |
| 9 | * The contents of the section will be decoded according to their transfer |
| 10 | * encoding - base64, quoted-printable and uuencoded text are supported. |
| 11 | * |
| 12 | * @param resource $mimemail A valid MIME resource, created with |
| 13 | * mailparse_msg_create. |
| 14 | * @param mixed $filename Can be a file name or a valid stream resource. |
| 15 | * @param callable $callbackfunc If set, this must be either a valid callback that will be passed the |
| 16 | * extracted section, or NULL to make this function return the |
| 17 | * extracted section. |
| 18 | * |
| 19 | * If not specified, the contents will be sent to "stdout". |
| 20 | * @return string If callbackfunc is not NULL returns TRUE on |
| 21 | * success. |
| 22 | * |
| 23 | * If callbackfunc is set to NULL, returns the |
| 24 | * extracted section as a string. |
| 25 | * @throws MailparseException |
| 26 | * |
| 27 | */ |
| 28 | function mailparse_msg_extract_part_file($mimemail, $filename, callable $callbackfunc = null): string |
| 29 | { |
| 30 | error_clear_last(); |
| 31 | if ($callbackfunc !== null) { |
| 32 | $result = \mailparse_msg_extract_part_file($mimemail, $filename, $callbackfunc); |
| 33 | } else { |
| 34 | $result = \mailparse_msg_extract_part_file($mimemail, $filename); |
| 35 | } |
| 36 | if ($result === \false) { |
| 37 | throw MailparseException::createFromPhpError(); |
| 38 | } |
| 39 | return $result; |
| 40 | } |
| 41 | /** |
| 42 | * Frees a MIME resource. |
| 43 | * |
| 44 | * @param resource $mimemail A valid MIME resource allocated by |
| 45 | * mailparse_msg_create or |
| 46 | * mailparse_msg_parse_file. |
| 47 | * @throws MailparseException |
| 48 | * |
| 49 | */ |
| 50 | function mailparse_msg_free($mimemail): void |
| 51 | { |
| 52 | error_clear_last(); |
| 53 | $result = \mailparse_msg_free($mimemail); |
| 54 | if ($result === \false) { |
| 55 | throw MailparseException::createFromPhpError(); |
| 56 | } |
| 57 | } |
| 58 | /** |
| 59 | * Parses a file. |
| 60 | * This is the optimal way of parsing a mail file that you have on disk. |
| 61 | * |
| 62 | * @param string $filename Path to the file holding the message. |
| 63 | * The file is opened and streamed through the parser. |
| 64 | * |
| 65 | * The message contained in filename is supposed to end with a newline |
| 66 | * (CRLF); otherwise the last line of the message will not be parsed. |
| 67 | * @return resource Returns a MIME resource representing the structure. |
| 68 | * @throws MailparseException |
| 69 | * |
| 70 | */ |
| 71 | function mailparse_msg_parse_file(string $filename) |
| 72 | { |
| 73 | error_clear_last(); |
| 74 | $result = \mailparse_msg_parse_file($filename); |
| 75 | if ($result === \false) { |
| 76 | throw MailparseException::createFromPhpError(); |
| 77 | } |
| 78 | return $result; |
| 79 | } |
| 80 | /** |
| 81 | * Incrementally parse data into the supplied mime mail resource. |
| 82 | * |
| 83 | * This function allow you to stream portions of a file at a time, rather |
| 84 | * than read and parse the whole thing. |
| 85 | * |
| 86 | * @param resource $mimemail A valid MIME resource. |
| 87 | * @param string $data The final chunk of data is supposed to end with a newline |
| 88 | * (CRLF); otherwise the last line of the message will not be parsed. |
| 89 | * @throws MailparseException |
| 90 | * |
| 91 | */ |
| 92 | function mailparse_msg_parse($mimemail, string $data): void |
| 93 | { |
| 94 | error_clear_last(); |
| 95 | $result = \mailparse_msg_parse($mimemail, $data); |
| 96 | if ($result === \false) { |
| 97 | throw MailparseException::createFromPhpError(); |
| 98 | } |
| 99 | } |
| 100 | /** |
| 101 | * Streams data from the source file pointer, apply |
| 102 | * encoding and write to the destination file pointer. |
| 103 | * |
| 104 | * @param resource $sourcefp A valid file handle. The file is streamed through the parser. |
| 105 | * @param resource $destfp The destination file handle in which the encoded data will be written. |
| 106 | * @param string $encoding One of the character encodings supported by the |
| 107 | * mbstring module. |
| 108 | * @throws MailparseException |
| 109 | * |
| 110 | */ |
| 111 | function mailparse_stream_encode($sourcefp, $destfp, string $encoding): void |
| 112 | { |
| 113 | error_clear_last(); |
| 114 | $result = \mailparse_stream_encode($sourcefp, $destfp, $encoding); |
| 115 | if ($result === \false) { |
| 116 | throw MailparseException::createFromPhpError(); |
| 117 | } |
| 118 | } |
| 119 |