array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), 'this' => array ( 0 => 'function.imap-fetch-overview.php', 1 => 'imap_fetch_overview', 2 => 'Read an overview of the information in the headers of the given message', ), 'up' => array ( 0 => 'ref.imap.php', 1 => 'IMAP Funzioni', ), 'prev' => array ( 0 => 'function.imap-expunge.php', 1 => 'imap_expunge', ), 'next' => array ( 0 => 'function.imap-fetchbody.php', 1 => 'imap_fetchbody', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/imap/functions/imap-fetch-overview.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

imap_fetch_overview

(PHP 4, PHP 5, PHP 7, PHP 8)

imap_fetch_overviewRead an overview of the information in the headers of the given message

Descrizione

imap_fetch_overview(IMAP\Connection $imap, string $sequence, int $flags = 0): array|false

This function fetches mail headers for the given sequence and returns an overview of their contents.

Elenco dei parametri

imap

An IMAP\Connection instance.

sequence

A message sequence description. You can enumerate desired messages with the X,Y syntax, or retrieve all messages within an interval with the X:Y syntax

flags

sequence will contain a sequence of message indices or UIDs, if this parameter is set to FT_UID.

Valori restituiti

Returns an array of objects describing one message header each. The object will only define a property if it exists. The possible properties are:

The function returns false on failure.

Log delle modifiche

Versione Descrizione
8.1.0 The imap parameter expects an IMAP\Connection instance now; previously, a valid imap resource was expected.

Esempi

Example #1 imap_fetch_overview() example

<?php
$mbox
= imap_open("{imap.example.org:143}INBOX", "username", "password")
or die(
"can't connect: " . imap_last_error());

$MC = imap_check($mbox);

// Fetch an overview for all messages in INBOX
$result = imap_fetch_overview($mbox,"1:{$MC->Nmsgs}",0);
foreach (
$result as $overview) {
echo
"#{$overview->msgno} ({$overview->date}) - From: {$overview->from}
{$overview->subject}\n";
}
imap_close($mbox);
?>

Vedere anche: