Query: imap_setflag_full
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
IMAP_SETFLAG_FULL(3) 1 IMAP_SETFLAG_FULL(3) imap_setflag_full - Sets flags on messagesSYNOPSISbool imap_setflag_full (resource $imap_stream, string $sequence, string $flag, [int $options = NIL])DESCRIPTIONCauses a store to add the specified $flag to the flags set for the messages in the specified $sequence.PARAMETERSo $ imap_stream -An IMAP stream returned by imap_open(3). o $sequence - A sequence of message numbers. You can enumerate desired messages with the X,Y syntax, or retrieve all messages within an inter- val with the X:Y syntax o $flag - The flags which you can set are Seen, Answered, Flagged, Deleted, and Draft as defined by RFC2060. o $options - A bit mask that may contain the single option: o ST_UID - The sequence argument contains UIDs instead of sequence numbersRETURN VALUESReturns TRUE on success or FALSE on failure.EXAMPLESExample #1 imap_setflag_full(3) example <?php $mbox = imap_open("{imap.example.org:143}", "username", "password") or die("can't connect: " . imap_last_error()); $status = imap_setflag_full($mbox, "2,5", "\Seen \Flagged"); echo gettype($status) . " "; echo $status . " "; imap_close($mbox); ?>SEE ALSOimap_clearflag_full(3). PHP Documentation Group IMAP_SETFLAG_FULL(3)
Related Man Pages |
---|
imap_createmailbox(3) - php |
imap_check(3) - php |
imap_delete(3) - php |
imap_fetch_overview(3) - php |
imap_get_quotaroot(3) - php |
Similar Topics in the Unix Linux Community |
---|
ESC sequence on RHEL5 |
Need to find the gap in the sequence of numbers |