Searched refs:msg_uid (Results 1 – 7 of 7) sorted by relevance
/PHP-8.0/ext/imap/tests/ |
H A D | imap_fetch_overview_variation3.phpt | 22 $msg_uid = imap_uid($stream_id, $msg_no); 37 $overview = imap_fetch_overview($stream_id, $msg_uid, $option);
|
H A D | imap_fetchheader_variation3.phpt | 22 $msg_uid = imap_uid($stream_id, $msg_no); 34 if (is_string(imap_fetchheader($stream_id, $msg_uid, $option))) {
|
H A D | imap_fetchbody_basic.phpt | 33 $msg_uid = imap_uid($stream_id, $msg_no); 34 var_dump( imap_fetchbody($stream_id, $msg_uid, $section, $option) );
|
H A D | imap_fetchbody_variation4.phpt | 21 $msg_uid = imap_uid($stream_id, $msg_no); 36 if(is_string(imap_fetchbody($stream_id, $msg_uid, $section, $option))) {
|
H A D | imap_fetchheader_basic.phpt | 23 $msg_uid = imap_uid($stream_id, $msg_no); 24 var_dump(imap_fetchheader($stream_id, $msg_uid, $option));
|
/PHP-8.0/ext/imap/tests/setup/ |
H A D | imap_include.inc | 133 function setup_test_mailbox_for_uid_tests(string $mailbox_suffix, &$msg_no = null, &$msg_uid = null) 144 $msg_uid = 9;
|
/PHP-8.0/ext/imap/ |
H A D | php_imap.c | 2811 zend_long msg_uid; in PHP_FUNCTION() local 2814 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rl", &streamind, &msg_uid) == FAILURE) { in PHP_FUNCTION() 2823 if (msg_uid < 1) { in PHP_FUNCTION() 2828 RETURN_LONG(mail_msgno(imap_le_struct->imap_stream, msg_uid)); in PHP_FUNCTION()
|
Completed in 19 milliseconds