Home
last modified time | relevance | path

Searched refs:imap_fetch_overview (Results 1 – 13 of 13) sorted by relevance

/PHP-5.5/ext/imap/tests/
H A Dimap_fetch_overview_error.phpt2 Test imap_fetch_overview() function : error conditions - incorrect number of args
9 /* Prototype : array imap_fetch_overview(resource $stream_id, int $msg_no [, int $options])
16 * Pass an incorrect number of arguments to imap_fetch_overview() to test behaviour
19 echo "*** Testing imap_fetch_overview() : error conditions ***\n";
23 //Test imap_fetch_overview with one more than the expected number of arguments
29 var_dump( imap_fetch_overview($stream_id, $msg_no, $options, $extra_arg) );
31 // Testing imap_fetch_overview with one less than the expected number of arguments
33 var_dump( imap_fetch_overview($stream_id) );
41 *** Testing imap_fetch_overview() : error conditions ***
43 -- Testing imap_fetch_overview() function with more than expected no. of arguments --
[all …]
H A Dimap_fetch_overview_variation1.phpt2 Test imap_fetch_overview() function : usage variations - diff data types as $stream_id arg
9 /* Prototype : array imap_fetch_overview(resource $stream_id, int $msg_no [, int $options])
16 * Pass different data types as $stream_id argument to imap_fetch_overview() to test behaviour
19 echo "*** Testing imap_fetch_overview() : usage variations ***\n";
87 // loop through each element of $inputs to check the behavior of imap_fetch_overview()
92 var_dump( imap_fetch_overview($input, $msg_no) );
98 *** Testing imap_fetch_overview() : usage variations ***
102 Warning: imap_fetch_overview() expects parameter 1 to be resource, integer given in %s on line %d
122 Warning: imap_fetch_overview() expects parameter 1 to be resource, double given in %s on line %d
147 Warning: imap_fetch_overview() expects parameter 1 to be resource, null given in %s on line %d
[all …]
H A Dimap_fetch_overview_variation3.phpt2 Test imap_fetch_overview() function : usage variations - FT_UID option
9 /* Prototype : array imap_fetch_overview(resource $stream_id, int $msg_no [, int $options])
15 * Test passing a range of values into the $options argument to imap_fetch_overview():
20 echo "*** Testing imap_fetch_overview() : usage variations ***\n";
43 $overview = imap_fetch_overview($stream_id, $msg_uid, $option);
45 echo "imap_fetch_overview() returns an object\n";
57 *** Testing imap_fetch_overview() : usage variations ***
62 imap_fetch_overview() returns an object
65 imap_fetch_overview() returns an object
68 imap_fetch_overview() returns an object
[all …]
H A Dimap_fetch_overview_variation4.phpt2 Test imap_fetch_overview() function : usage variations - different resources as $stream_id
9 /* Prototype : array imap_fetch_overview(resource $stream_id, int $msg_no [, int $options])
16 * Pass different resource types to imap_fetch_overview() to test behaviour
19 echo "*** Testing imap_fetch_overview() : usage variations ***\n";
23 var_dump(imap_fetch_overview($file_pointer, 1));
28 var_dump(imap_fetch_overview($dir_handle, 1));
33 *** Testing imap_fetch_overview() : usage variations ***
38 Warning: imap_fetch_overview(): supplied resource is not a valid imap resource in %s on line %d
44 Warning: imap_fetch_overview(): supplied resource is not a valid imap resource in %s on line %d
H A Dimap_fetch_overview_basic.phpt2 Test imap_fetch_overview() function : basic functionality
9 /* Prototype : array imap_fetch_overview(resource $stream_id, int $msg_no [, int $options])
15 echo "*** Testing imap_fetch_overview() : basic functionality ***\n";
26 // Calling imap_fetch_overview() with all possible arguments
28 $a = imap_fetch_overview($stream_id, "$msg_no", $options) ;
32 // Calling imap_fetch_overview() with mandatory arguments
34 $a = imap_fetch_overview($stream_id, '1:2') ;
53 *** Testing imap_fetch_overview() : basic functionality ***
H A Dimap_fetch_overview_variation6.phpt2 Test imap_fetch_overview() function : usage variations - multipart message
9 /* Prototype : array imap_fetch_overview(resource $stream_id, int $msg_no [, int $options])
15 * Pass a multipart message to imap_fetch_overview() to test the contents of returned array
18 echo "*** Testing imap_fetch_overview() : usage variations ***\n";
29 $a = imap_fetch_overview($stream_id, $msg_no);
94 *** Testing imap_fetch_overview() : usage variations ***
H A Dimap_fetch_overview_variation5.phpt2 Test imap_fetch_overview() function : usage variations - $msg_no argument
9 /* Prototype : array imap_fetch_overview(resource $stream_id, int $msg_no [, int $options])
17 * of imap_fetch_overview()
20 echo "*** Testing imap_fetch_overview() : usage variations ***\n";
31 $overview = imap_fetch_overview($stream_id, $msg_no);
51 *** Testing imap_fetch_overview() : usage variations ***
H A Dimap_fetch_overview_variation2.phpt2 Test imap_fetch_overview() function : usage variations - diff data types as $msg_no arg
9 /* Prototype : array imap_fetch_overview(resource $stream_id, int $msg_no [, int $options])
16 * Pass different data types as $msg_no argument to imap_fetch_overview() to test behaviour
19 echo "*** Testing imap_fetch_overview() : usage variations ***\n";
94 // loop through each element of $inputs to check the behavior of imap_fetch_overview()
99 $overview = imap_fetch_overview($stream_id, $input);
119 *** Testing imap_fetch_overview() : usage variations ***
204 Warning: imap_fetch_overview() expects parameter 2 to be %binary_string_optional%, array given in %…
228 Warning: imap_fetch_overview() expects parameter 2 to be %binary_string_optional%, resource given i…
H A Dimap_fetchbody_basic.phpt40 $overview = imap_fetch_overview($stream_id, 1);
55 $overview = imap_fetch_overview($stream_id, 1);
H A Dimap_include.inc30 * Display all fields in an element from an imap_fetch_overview() response
36 * @param array resp element from the return value of imap_fetch_overview()
/PHP-5.5/ext/imap/
H A Dphp_imap.h159 PHP_FUNCTION(imap_fetch_overview);
H A Dphp_imap.c519 PHP_FE(imap_fetch_overview, arginfo_imap_fetch_overview)
3385 PHP_FUNCTION(imap_fetch_overview) in PHP_FUNCTION() argument
/PHP-5.5/
H A DNEWS4936 - Implemented FR#35638 (Adding udate to imap_fetch_overview results).
6199 imap_fetch_overview() function). (Ilia)

Completed in 52 milliseconds