Home
last modified time | relevance | path

Searched refs:second (Results 1 – 25 of 339) sorted by relevance

12345678910>>...14

/PHP-8.0/ext/standard/tests/array/
H A Darray_unshift_variation2.phpt129 string(6) "second"
146 string(6) "second"
160 string(6) "second"
177 string(6) "second"
191 string(6) "second"
208 string(6) "second"
222 string(6) "second"
239 string(6) "second"
253 string(6) "second"
270 string(6) "second"
[all …]
H A Darray_intersect_key_variation8.phpt12 'second' => array('yellow' => 7),
21 'second' => array('cyan' => 8),
38 ["second"]=>
52 ["second"]=>
H A Darray_column_variant.phpt11 echo "-- pass null as second parameter to get back all columns indexed by third parameter --\n";
14 echo "-- pass null as second parameter and bogus third param to get back zero-indexed array of all …
17 echo "-- pass null as second parameter and no third param to get back array_values(input) --\n";
23 -- pass null as second parameter to get back all columns indexed by third parameter --
44 -- pass null as second parameter and bogus third param to get back zero-indexed array of all column…
65 -- pass null as second parameter and no third param to get back array_values(input) --
H A Darray_unshift_object.phpt61 $array = array('f' => "first", "s" => 'second', 1, 2.222);
112 string(6) "second"
132 string(6) "second"
147 string(6) "second"
165 string(6) "second"
184 string(6) "second"
206 string(6) "second"
223 string(6) "second"
243 string(6) "second"
258 string(6) "second"
[all …]
H A Darray_unshift_variation7.phpt14 $array = array('f' => "first", "s" => 'second', 1, 2.222);
62 string(6) "second"
79 string(6) "second"
94 string(6) "second"
112 string(6) "second"
126 string(6) "second"
143 string(6) "second"
157 string(6) "second"
174 string(6) "second"
190 string(6) "second"
[all …]
H A Darray_unshift_variation8.phpt14 $array = array('f' => "first", "s" => 'second', 1, 2.222);
62 string(6) "second"
79 string(6) "second"
93 string(6) "second"
110 string(6) "second"
124 string(6) "second"
141 string(6) "second"
155 string(6) "second"
172 string(6) "second"
186 string(6) "second"
[all …]
H A Darray_unshift_variation9.phpt102 string(6) "second"
119 string(6) "second"
134 string(6) "second"
152 string(6) "second"
169 string(6) "second"
189 string(6) "second"
207 string(6) "second"
228 string(6) "second"
244 string(6) "second"
263 string(6) "second"
[all …]
/PHP-8.0/ext/bcmath/
H A Dbcmath.c178 bc_init_num(&second); in PHP_FUNCTION()
197 bc_free_num(&second); in PHP_FUNCTION()
229 bc_init_num(&second); in PHP_FUNCTION()
248 bc_free_num(&second); in PHP_FUNCTION()
280 bc_init_num(&second); in PHP_FUNCTION()
299 bc_free_num(&second); in PHP_FUNCTION()
331 bc_init_num(&second); in PHP_FUNCTION()
387 bc_init_num(&second); in PHP_FUNCTION()
444 bc_init_num(&second); in PHP_FUNCTION()
502 bc_init_num(&second); in PHP_FUNCTION()
[all …]
/PHP-8.0/ext/standard/tests/strings/
H A Dchop_variation5.phpt11 var_dump ( chop("chop test \t\0 ") ); /* without second Argument */
12 …var_dump ( chop("chop test " , "") ); /* no characters in second Argument …
13 var_dump ( chop("chop test ", NULL) ); /* with NULL as second Argument */
14 …var_dump ( chop("chop test ", true) ); /* with boolean value as second Argu…
15 …var_dump ( chop("chop test ", " ") ); /* with single space as second Argum…
16 …hop test \t\n\r\0\x0B", "\t\n\r\0\x0B") ); /* with multiple escape sequences as second Argument */
17 …var_dump ( chop("chop testABCXYZ", "A..Z") ); /* with characters range as second A…
18 …var_dump ( chop("chop test0123456789", "0..9") ); /* with numbers range as second Argu…
19 …"chop test$#@", "#@$") ); /* with some special characters as second Argument */
H A Dbug20261.phpt6 $second = $first;
10 echo "2: ".$second."\n";
13 $rot = str_rot13($second);
16 echo "2: ".$second."\n";
H A Dbug21453.phpt8 <tr><td>second cell before < second cell after</td></tr>
17 second cell before < second cell after
H A Dltrim.phpt24 var_dump ( ltrim(" \t\0 ltrim test") ); /* without second Argument */
25 …var_dump ( ltrim(" ltrim test" , "") ); /* no characters in second Argumen…
26 var_dump ( ltrim(" ltrim test", NULL) ); /* with NULL as second Argument */
27 …var_dump ( ltrim(" ltrim test", true) ); /* with boolean value as second Ar…
28 …var_dump ( ltrim(" ltrim test", " ") ); /* with single space as second Arg…
29 …\n\r\0\x0B ltrim test", "\t\n\r\0\x0B") ); /* with multiple escape sequences as second Argument */
30 …var_dump ( ltrim("ABCXYZltrim test", "A..Z") ); /* with characters range as second
31 …var_dump ( ltrim("0123456789ltrim test", "0..9") ); /* with numbers range as second Ar…
32 …@$#ltrim test", "#@$") ); /* with some special characters as second Argument */
H A Drtrim.phpt9 var_dump ( rtrim("rtrim test \t\0 ") ); /* without second Argument */
10 …var_dump ( rtrim("rtrim test " , "") ); /* no characters in second Argumen…
11 var_dump ( rtrim("rtrim test ", NULL) ); /* with NULL as second Argument */
12 …var_dump ( rtrim("rtrim test ", true) ); /* with boolean value as second Ar…
13 …var_dump ( rtrim("rtrim test ", " ") ); /* with single space as second Arg…
14 …rim test \t\n\r\0\x0B", "\t\n\r\0\x0B") ); /* with multiple escape sequences as second Argument */
15 …var_dump ( rtrim("rtrim testABCXYZ", "A..Z") ); /* with characters range as second
16 …var_dump ( rtrim("rtrim test0123456789", "0..9") ); /* with numbers range as second Ar…
17 …rtrim test$#@", "#@$") ); /* with some special characters as second Argument */
H A Dparse_str_basic1.phpt9 $s1 = "first=val1&second=val2&third=val3";
15 $s1 = "first=val1&second=val2&third=val3";
33 ["second"]=>
44 ["second"]=>
55 ["second"]=>
/PHP-8.0/tests/classes/
H A Dfinal.phpt15 class second extends first {
17 echo "Call to function second::show()\n";
21 $t2 = new second();
28 Call to function second::show()
H A Dprivate_006.phpt2 ZE2 A private method can be overwritten in a second derived class
17 class second extends first {
20 second::do_show();
22 class third extends second {
H A Dprivate_006b.phpt2 ZE2 A private method can be overwritten in a second derived class
19 class second extends first {
22 //$t2 = new second();
25 class third extends second {
/PHP-8.0/ext/date/tests/
H A Ddate-lenient.phpt24 [second] =>
46 [second] =>
68 [second] =>
90 [second] =>
112 [second] =>
133 [second] =>
H A Ddate_parse_001.phpt29 ["second"]=>
57 ["second"]=>
85 ["second"]=>
121 ["second"]=>
151 ["second"]=>
179 ["second"]=>
207 ["second"]=>
245 ["second"]=>
281 ["second"]=>
/PHP-8.0/ext/dom/tests/
H A DDOM4_DOMNode_after.phpt10 $dom->loadXML('<test><mark>first</mark><mark>second</mark></test>');
20 $secondMark->after('text inserted after second');
33 second
35 text inserted after second
H A DDOM4_DOMNode_before.phpt10 $dom->loadXML('<test><mark>first</mark><mark>second</mark></test>');
20 $secondMark->before('text inserted before second');
32 text inserted before second
34 second
/PHP-8.0/Zend/tests/
H A Dbug66286.phpt10 class second extends first {
19 $objFirst = new second('123');
20 $objSecond = new second('321');
H A Dbug46241.phpt17 echo "Caught on second level: '$errstr'\n";
37 echo "Caught on second level: '$errstr'\n";
48 Caught on second level: 'Foo'
49 Caught on second level: 'Foo'
/PHP-8.0/ext/spl/tests/
H A Dbug65006.phpt13 class second {
21 second::init();
37 string(6) "second"
/PHP-8.0/Zend/tests/generators/finally/
H A Dfinally_ran_on_close.phpt17 echo "second finally run\n";
19 echo "code after second finally\n";
30 second finally run

Completed in 40 milliseconds

12345678910>>...14