imap_thread
imap_thread
Returns a tree of threaded message
**imap_thread** IMAP\Connection $imap int $flags
Gets a tree of a threaded message.
flags
returns an associative array containing
a tree of messages threaded by , or false
on error.
imap_thread``REFERENCES
Every message in the current mailbox will be represented by three entries in the resulting array:
-
- current message number
$thread["XX.num"]
- current message number
-
$thread["XX.next"] -
$thread["XX.branch"]Voorbeeld: Example
<?php
// Here we're outputting the threads of a newsgroup, in HTML
$nntp = imap_open('{news.example.com:119/nntp}some.newsgroup', '', '');
$threads = imap_thread($nntp);
foreach ($threads as $key => $val) {
$tree = explode('.', $key);
if ($tree[1] == 'num') {
$header = imap_headerinfo($nntp, $val);
echo "<ul>\n\t<li>" . $header->fromaddress . "\n";
} elseif ($tree[1] == 'branch') {
echo "\t</li>\n</ul>\n";
}
}
imap_close($nntp);
?>