imap_status

(PHP 3 >= 3.0.4, PHP 4, PHP 5)

imap_status --  現在のメールボックス以外のメールボックスのステータス情報を返す

説明

object imap_status ( resource imap_stream, string mailbox, int options )

この関数は、ステータス情報を有するオブジェクトを返します。 有効なフラグは次のようになります。

status->flags にも上記の各定数に対するビットマスクが 設定されます。

例 1. imap_status() の例

<?php
$mbox
= imap_open("{imap.example.org}", "username", "password", OP_HALFOPEN)
      or die(
"接続できません: " . imap_last_error());

$status = imap_status($mbox, "{imap.example.org}INBOX", SA_ALL);
if (
$status) {
  echo
"Messages:   " . $status->messages    . "<br />\n";
  echo
"Recent:     " . $status->recent      . "<br />\n";
  echo
"Unseen:     " . $status->unseen      . "<br />\n";
  echo
"UIDnext:    " . $status->uidnext     . "<br />\n";
  echo
"UIDvalidity:" . $status->uidvalidity . "<br />\n";
} else {
  echo
"imap_status failed: " . imap_last_error() . "\n";
}

imap_close($mbox);
?>