Home
last modified time | relevance | path

Searched refs:of (Results 226 – 250 of 5356) sorted by relevance

12345678910>>...215

/PHP-7.1/ext/standard/tests/file/
H A D007_variation19.phpt32 var_dump($file_handle); //Check for the content of handle
33 var_dump( get_resource_type($file_handle) ); //Check for the type of resource
34 var_dump( ftell($file_handle) ); //Initial file pointer position, expected at the beginning of the…
35 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t…
36 …ll($file_handle) ); //File pointer position after write operation, expected at the end of the file
39 …ile_handle) ); //File pointer position after read operation, expected at the beginning of the file
43 …lesize($file) ); //Check for size of existing data file before opening the file in "wb" mode agai…
46 var_dump( filesize($file) ); //Check for size of existing data file after opening the file in "wb"…
51 var_dump( file_exists($file) ); //Check for the existence of file
59 resource(%d) of type (stream)
H A D007_variation3.phpt32 var_dump($file_handle); //Check for the content of handle
33 var_dump( get_resource_type($file_handle) ); //Check for the type of resource
34 var_dump( ftell($file_handle) ); //Initial file pointer position, expected at the beginning of the…
35 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t…
36 …ll($file_handle) ); //File pointer position after write operation, expected at the end of the file
39 …ile_handle) ); //File pointer position after read operation, expected at the beginning of the file
43 …lesize($file) ); //Check for size of existing data file before opening the file in "w" mode again…
46 var_dump( filesize($file) ); //Check for size of existing data file after opening the file in "w" …
51 var_dump( file_exists($file) ); //Check for the existence of file
59 resource(%d) of type (stream)
/PHP-7.1/ext/oci8/tests/
H A Ddrcp_connect1.phpt17 // Open a number of connections with oci_connect and oci_pconnect and verify
19 // To verify this, we change the value of a PL/SQL package variable in one
75 resource(%d) of type (oci8 connection)
78 The value of the package variable is 0
82 resource(%d) of type (oci8 connection)
84 The value of the package variable is 0
87 resource(%d) of type (oci8 connection)
89 The value of the package variable is 100
92 resource(%d) of type (oci8 persistent connection)
96 resource(%d) of type (oci8 persistent connection)
[all …]
/PHP-7.1/ext/standard/tests/streams/
H A Dstream_set_chunk_size.phpt31 * the writes are made in chunks of size 1 (business as usual)
37 echo "should elicit 3 writes of size 1 and return 3\n";
42 echo "should elicit one read of size 100 (chunk size)\n";
44 echo "should elicit one read of size 100 (chunk size)\n";
48 echo "should elicit 2 writes of size 100 and one of size 50\n";
62 should elicit 3 writes of size 1 and return 3
69 should elicit one read of size 100 (chunk size)
72 should elicit one read of size 100 (chunk size)
77 should elicit 2 writes of size 100 and one of size 50
/PHP-7.1/ext/standard/tests/strings/
H A Dstrcspn_variation5.phpt6 * Description: Finds length of initial segment consisting entirely of characters not found in mask.
29 first line of heredoc string
30 second line of heredoc string
31 third line of heredocstring
66 // loop through each element of the array for str argument
86 -- Iteration with str value as "first line of heredoc string
87 second line of heredoc string
88 third line of heredocstring" --
H A Dstrspn_variation5.phpt6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
29 first line of heredoc string
30 second line of heredoc string
31 third line of heredocstring
66 // loop through each element of the array for str argument
86 -- Iteration with str value as "first line of heredoc string
87 second line of heredoc string
88 third line of heredocstring" --
/PHP-7.1/ext/standard/tests/array/
H A Darray_multisort_variation8.phpt2 Test array_multisort() function : usage variation - test sort order of all types
11 echo "*** Testing array_multisort() : usage variation - test sort order of all types***\n";
36 'instance of classWithToString' => new classWithToString(),
37 'instance of classWithoutToString' => new classWithoutToString(),
47 *** Testing array_multisort() : usage variation - test sort order of all types***
54 ["instance of classWithoutToString"]=>
68 ["instance of classWithToString"]=>
H A Darray_uintersect_error.phpt6 …* Description: Returns the entries of arr1 that have values which are present in all the other arg…
14 //Test array_uintersect with one more than the expected number of arguments
15 echo "\n-- Testing array_uintersect() function with more than expected no. of arguments --\n";
25 // Testing array_uintersect with one less than the expected number of arguments
26 echo "\n-- Testing array_uintersect() function with less than expected no. of arguments --\n";
36 -- Testing array_uintersect() function with more than expected no. of arguments --
41 -- Testing array_uintersect() function with less than expected no. of arguments --
H A Deach_variation4.phpt12 * Test behaviour of each() when:
13 * 1. Passed an array made up of referenced variables
19 echo "\n-- Array made up of referenced variables: --\n";
25 echo "-- Call each until at the end of the array: --\n";
35 -- Array made up of referenced variables: --
36 -- Call each until at the end of the array: --
H A Dcount_error.phpt2 Test count() function : error conditions - pass incorrect number of args
6 * Description: Count the number of elements in a variable (usually an array)
11 * Pass incorrect number of arguments to count() to test behaviour
20 //Test count with one more than the expected number of arguments
21 echo "\n-- Testing count() function with more than expected no. of arguments --\n";
37 -- Testing count() function with more than expected no. of arguments --
H A Dkey_error.phpt2 Test key() function : error conditions - Pass incorrect number of args
6 * Description: Return the key of the element currently pointed to by the internal array pointer
11 * Pass incorrect number of arguments to key() to test behaviour
20 //Test current with one more than the expected number of arguments
21 echo "\n-- Testing key() function with more than expected no. of arguments --\n";
35 -- Testing key() function with more than expected no. of arguments --
H A Darray_push_variation5.phpt2 Test array_push() function : usage variations - position of internal array pointer
6 * Description: Pushes elements onto the end of the array
11 * Check the position of the internal array pointer after calling array_push()
22 echo "\n-- Position of Internal Pointer in Original Array: --\n";
33 -- Position of Internal Pointer in Original Array: --
/PHP-7.1/ext/mbstring/tests/
H A Dmb_strrchr_error1.phpt11 * Description: Finds the last occurrence of a character in a string within another
19 //Test mb_strrchr with one more than the expected number of arguments
20 echo "\n-- Testing mb_strrchr() function with more than expected no. of arguments --\n";
28 // Testing mb_strrchr with one less than the expected number of arguments
29 echo "\n-- Testing mb_strrchr() function with less than expected no. of arguments --\n";
38 -- Testing mb_strrchr() function with more than expected no. of arguments --
43 -- Testing mb_strrchr() function with less than expected no. of arguments --
H A Dmb_stristr_error1.phpt11 * Description: Finds first occurrence of a string within another, case insensitive
19 //Test mb_stristr with one more than the expected number of arguments
20 echo "\n-- Testing mb_stristr() function with more than expected no. of arguments --\n";
28 // Testing mb_stristr with one less than the expected number of arguments
29 echo "\n-- Testing mb_stristr() function with less than expected no. of arguments --\n";
38 -- Testing mb_stristr() function with more than expected no. of arguments --
43 -- Testing mb_stristr() function with less than expected no. of arguments --
H A Dmb_strrichr_error1.phpt11 …* Description: Finds the last occurrence of a character in a string within another, case insensiti…
19 //Test mb_strrichr with one more than the expected number of arguments
20 echo "\n-- Testing mb_strrichr() function with more than expected no. of arguments --\n";
28 // Testing mb_strrichr with one less than the expected number of arguments
29 echo "\n-- Testing mb_strrichr() function with less than expected no. of arguments --\n";
38 -- Testing mb_strrichr() function with more than expected no. of arguments --
43 -- Testing mb_strrichr() function with less than expected no. of arguments --
H A Dmb_strstr_error1.phpt11 * Description: Finds first occurrence of a string within another
19 //Test mb_strstr with one more than the expected number of arguments
20 echo "\n-- Testing mb_strstr() function with more than expected no. of arguments --\n";
28 // Testing mb_strstr with one less than the expected number of arguments
29 echo "\n-- Testing mb_strstr() function with less than expected no. of arguments --\n";
38 -- Testing mb_strstr() function with more than expected no. of arguments --
43 -- Testing mb_strstr() function with less than expected no. of arguments --
/PHP-7.1/ext/pcre/tests/
H A Dpreg_grep_error.phpt2 Test preg_grep() function : error conditions - wrong numbers of parameters
13 //Test preg_grep with one more than the expected number of arguments
14 echo "\n-- Testing preg_grep() function with more than expected no. of arguments --\n";
20 // Testing preg_grep withone less than the expected number of arguments
21 echo "\n-- Testing preg_grep() function with less than expected no. of arguments --\n";
34 -- Testing preg_grep() function with more than expected no. of arguments --
39 -- Testing preg_grep() function with less than expected no. of arguments --
H A Dpreg_match_all_error.phpt2 Test preg_match_all() function : error conditions - incorrect number of parameters
13 //Test preg_match_all with one more than the expected number of arguments
14 echo "\n-- Testing preg_match_all() function with more than expected no. of arguments --\n";
21 // Testing preg_match_all withone less than the expected number of arguments
22 echo "\n-- Testing preg_match_all() function with less than expected no. of arguments --\n";
35 -- Testing preg_match_all() function with more than expected no. of arguments --
40 -- Testing preg_match_all() function with less than expected no. of arguments --
H A Dpreg_match_error.phpt2 Test preg_match() function : error conditions - wrong numbers of parameters
13 //Test preg_match with one more than the expected number of arguments
14 echo "\n-- Testing preg_match() function with more than expected no. of arguments --\n";
21 // Testing preg_match withone less than the expected number of arguments
22 echo "\n-- Testing preg_match() function with less than expected no. of arguments --\n";
35 -- Testing preg_match() function with more than expected no. of arguments --
40 -- Testing preg_match() function with less than expected no. of arguments --
H A Dpreg_replace_error.phpt2 Test preg_replace() function : error - incorrect number of parameters
13 //Test preg_replace() with one more than the expected number of arguments
14 echo "\n-- Testing preg_replace() function with more than expected no. of arguments --\n";
21 //Testing preg_replace() with one less than the expected number of arguments
22 echo "\n-- Testing preg_replace() function with less than expected no. of arguments --\n";
36 -- Testing preg_replace() function with more than expected no. of arguments --
41 -- Testing preg_replace() function with less than expected no. of arguments --
H A Dpreg_split_error.phpt2 Test preg_split() function : error conditions - incorrect number of parameters
13 //Test preg_split with one more than the expected number of arguments
14 echo "\n-- Testing preg_split() function with more than expected no. of arguments --\n";
21 // Testing preg_split withone less than the expected number of arguments
22 echo "\n-- Testing preg_split() function with less than expected no. of arguments --\n";
35 -- Testing preg_split() function with more than expected no. of arguments --
40 -- Testing preg_split() function with less than expected no. of arguments --
/PHP-7.1/Zend/tests/
H A Dobjects_001.phpt40 Notice: Object of class Bar could not be converted to int in %s on line %d
43 Notice: Object of class Bar could not be converted to int in %s on line %d
46 Notice: Object of class Bar could not be converted to int in %s on line %d
49 Notice: Object of class Bar could not be converted to int in %s on line %d
52 Notice: Object of class Bar could not be converted to float in %s on line %d
55 Notice: Object of class Bar could not be converted to float in %s on line %d
58 Notice: Object of class Bar could not be converted to int in %s on line %d
/PHP-7.1/ext/standard/tests/network/
H A Dsyslog_error.phpt14 //Test syslog with one more than the expected number of arguments
15 echo "\n-- Testing syslog() function with more than expected no. of arguments --\n";
21 // Testing syslog with one less than the expected number of arguments
22 echo "\n-- Testing syslog() function with less than expected no. of arguments --\n";
31 -- Testing syslog() function with more than expected no. of arguments --
36 -- Testing syslog() function with less than expected no. of arguments --
/PHP-7.1/ext/pcre/pcrelib/doc/
H A Dpcre.txt940 adding one of
1796 string containing the version of PCRE and its date of release.
2265 By default, for the purposes of matching "start of line" and "end of
3167 start of a pattern of the form
3195 start of a pattern of the form
3291 An explicit match for CR of LF is either a literal appearance of one of
4872 by items at the start of the pattern of the form
5455 different from the behaviour of current versions of Perl.
5699 The handling of dot is entirely independent of the handling of circum-
6109 not all, of one of a number of alternatives. Inside a (?| group, paren-
[all …]
/PHP-7.1/ext/spl/internal/
H A Dspldoublylinkedlist.inc15 * The SplDoublyLinkedList class provides the main functionalities of a
48 /** @return the element popped from the end of the DLL.
59 /** @return the element shifted from the beginning of the DLL.
70 /** Pushes an element to the end of the DLL.
79 /** Adds an element to the beginning of the DLL.
88 /** @return the element at the beginning of the DLL.
95 /** @return the element at the end of the DLL.
118 * - The direction of the iteration (either one or the other)
122 * - The behavior of the iterator (either one or the other)
128 * @param $mode new mode of iteration
[all …]

Completed in 67 milliseconds

12345678910>>...215