PHP - Funzione imap_check ()

Le funzioni PHP − IMAP ti aiutano ad accedere agli account di posta elettronica, IMAP sta per Internet Mail Access Protocol usando queste funzioni puoi anche lavorare con i protocolli NNTP, POP3 e metodi di accesso alla casella di posta locale.

Il imap_check() La funzione accetta un valore di risorsa che rappresenta un flusso IMAP come parametro, verifica le informazioni sulla casella di posta data e le restituisce sotto forma di oggetto.

Sintassi

imap_check($imap_stream);

Parametri

Suor n Parametro e descrizione
1

imap_stream (Mandatory)

Si tratta di un valore stringa che rappresenta un flusso IMAP, valore di ritorno di imap_open() funzione.

Valori restituiti

Questa funzione restituisce un oggetto che contiene le informazioni sulla casella di posta corrente, in caso di successo, e un valore booleano che è FALSE in caso di errore.

Versione PHP

Questa funzione è stata introdotta per la prima volta nella versione 4 di PHP e funziona in tutte le versioni successive.

Esempio

L'esempio seguente mostra l'utilizzo di imap_check() funzione -

<html>
   <body>
      <?php
         //Establishing connection
         $url = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX";
         $id = "[email protected]";
         $pwd = "cohondob_123";
         $imap = imap_open($url, $id, $pwd);
         print("Connection established...."."<br>");
		 
         //Fetching the contents of a message
         print("Overview of the first message: "."<br>");
         $obj = imap_check($imap);
         print("<br>");	
         print("Date :".$obj->Date);
         print("<br>");		
         print("Driver: ".$obj−>Driver);
         print("<br>");	
         print("Mailbox: ".$obj−>Mailbox);
         print("<br>");		
         print("Nmsgs: ".$obj−>Nmsgs);
         print("<br>");		
         print("Recent: ".$obj−>Recent);
         print("<br>");

         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

Questo genererà il seguente output:

Connection established....
Overview of the first message:

Date :Mon, 26 Oct 2020 11:38:26 +0530 (India Standard Time)
Driver: imap
Mailbox: {imap.gmail.com:993/imap/notls/ssl/novalidate-cert/user="[email protected]"}INBOX
Nmsgs: 6
Recent: 0

Esempio

Di seguito è riportata un'altra di questa funzione:

<html>
   <body>
      <?php
         //Establishing connection
         $url = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX";
         $id = "[email protected]";
         $pwd = "cohondob_123";
         $imap = imap_open($url, $id, $pwd);
         print("Connection established...."."<br>");
		 
         //Fetching the contents of a message
         print("Overview of the first message: "."<br>");
         $MC = imap_check($imap);
         $overview = imap_fetch_overview($imap, "1:{$MC->Nmsgs}");
         foreach ($overview as $obj) {
            print("<br>");	
            print_r($obj);
            print("<br>");			
         }    
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

Produzione

Questo genererà il seguente output:

Connection established....
Overview of the first message:

stdClass Object (
   [from] => Sender[to] => [email protected] 
   [date] => Thu, 22 Oct 2020 20:10:17 +0530 
   [message_id] => [size] => 4857 [uid] => 19 
   [msgno] => 1 [recent] => 0 [flagged] => 0 
   [answered] => 0 [deleted] => 0 [seen] => 1 
   [draft] => 0 [udate] => 1603377656 
)
stdClass Object ( 
   [from] => Sender[to] => [email protected] 
   [date] => Thu, 22 Oct 2020 20:10:52 +0530 
   [message_id] => [size] => 4858 [uid] => 20 
   [msgno] => 2 [recent] => 0 [flagged] => 0 
   [answered] => 0 [deleted] => 0 [seen] => 1 
   [draft] => 0 [udate] => 1603377691 
)
stdClass Object ( 
   [from] => Sender[to] => [email protected] 
   [date] => Sun, 25 Oct 2020 16:11:22 +0530 [message_id] => 
   [size] => 4880 [uid] => 42 [msgno] => 3 [recent] => 0 
   [flagged] => 0 [answered] => 0 [deleted] => 0 [seen] => 1 
   [draft] => 0 [udate] => 1603622523 
)
stdClass Object ( 
   [from] => Sender[to] => [email protected] 
   [date] => Sun, 25 Oct 2020 17:22:41 +0530 [message_id] => 
   [size] => 4882 [uid] => 49 [msgno] => 4 [recent] => 0 
   [flagged] => 0 [answered] => 0 [deleted] => 0 [seen] => 1 
   [draft] => 0 [udate] => 1603626802 
)
stdClass Object ( 
   [from] => Sender[to] => [email protected] 
   [date] => Sun, 25 Oct 2020 17:23:10 +0530 [message_id] => 
   [size] => 4884 [uid] => 50 [msgno] => 5 [recent] => 0 
   [flagged] => 0 [answered] => 0 [deleted] => 0 [seen] => 1 
   [draft] => 0 [udate] => 1603626831 
)
stdClass Object ( 
   [from] => Sender[to] => [email protected] 
   [date] => Sun, 25 Oct 2020 17:24:25 +0530 [message_id] => 
   [size] => 4883 [uid] => 51 [msgno] => 6 [recent] => 0 
   [flagged] => 0 [answered] => 0 [deleted] => 0 [seen] => 1 
   [draft] => 0 [udate] => 1603626906 
)