Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
PHP: imap_thread - Manual
[go: Go Back, main page]

PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

imap_timeout" width="11" height="7"/> <imap_subscribe
Last updated: Mon, 05 Feb 2007

view this page in

imap_thread

(PHP 4 >= 4.0.7, PHP 5)

imap_thread — スレッド化したメッセージのツリーを返す

説明

array imap_thread ( resource imap_stream [, int options] )

スレッド化されたメッセージのツリーを取得します。

パラメータ

imap_stream

imap_open() が返す IMAP ストリーム。

options

返り値

imap_thread() は、REFERENCES でスレッド化したメッセージのツリーを含む連想配列を返します。 エラー時には FALSE を返します。

現在のメールボックス内のすべてのメッセージが、結果の配列の 3 つの エントリで表されます。

  • $thread["XX.num"] - 現在のメッセージ番号。

  • $thread["XX.next"]

  • $thread["XX.branch"]

例 971. imap_thread() の例

<?php

// ここでは、ニュースグループのスレッドを 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);

?>



add a note add a note User Contributed Notes
imap_thread
mail at moritz-lapp dot de
05-Aug-2004 05:47
One possible option to imap_thread is the constant SE_UID, which will make imap_thread return UIDs instead of sequence numbers in the x.num-fields of the returned array.

imap_timeout" width="11" height="7"/> <imap_subscribe
Last updated: Mon, 05 Feb 2007
 
 
show source | credits | sitemap | contact | advertising | mirror sites