Home
last modified time | relevance | path

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

12345678910>>...16

/php-src/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_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_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_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 …]
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 …]
/php-src/ext/bcmath/
H A Dbcmath.c181 bc_init_num(&second); in PHP_FUNCTION()
200 bc_free_num(&second); in PHP_FUNCTION()
232 bc_init_num(&second); in PHP_FUNCTION()
251 bc_free_num(&second); in PHP_FUNCTION()
283 bc_init_num(&second); in PHP_FUNCTION()
302 bc_free_num(&second); in PHP_FUNCTION()
334 bc_init_num(&second); in PHP_FUNCTION()
356 bc_free_num(&second); in PHP_FUNCTION()
388 bc_init_num(&second); in PHP_FUNCTION()
605 bc_num first, second; in PHP_FUNCTION() local
[all …]
/php-src/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 ", true) ); /* with boolean value as second Argu…
14 …var_dump ( chop("chop test ", " ") ); /* with single space as second Argum…
15 …hop test \t\n\r\0\x0B", "\t\n\r\0\x0B") ); /* with multiple escape sequences as second Argument */
16 …var_dump ( chop("chop testABCXYZ", "A..Z") ); /* with characters range as second A…
17 …var_dump ( chop("chop test0123456789", "0..9") ); /* with numbers range as second Argu…
18 …"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", true) ); /* with boolean value as second Ar…
27 …var_dump ( ltrim(" ltrim test", " ") ); /* with single space as second Arg…
28 …\n\r\0\x0B ltrim test", "\t\n\r\0\x0B") ); /* with multiple escape sequences as second Argument */
29 …var_dump ( ltrim("ABCXYZltrim test", "A..Z") ); /* with characters range as second
30 …var_dump ( ltrim("0123456789ltrim test", "0..9") ); /* with numbers range as second Ar…
31 …@$#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 ", true) ); /* with boolean value as second Ar…
12 …var_dump ( rtrim("rtrim test ", " ") ); /* with single space as second Arg…
13 …rim test \t\n\r\0\x0B", "\t\n\r\0\x0B") ); /* with multiple escape sequences as second Argument */
14 …var_dump ( rtrim("rtrim testABCXYZ", "A..Z") ); /* with characters range as second
15 …var_dump ( rtrim("rtrim test0123456789", "0..9") ); /* with numbers range as second Ar…
16 …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-src/ext/dom/tests/
H A DgetElementsByTagName_liveness_deallocated_document.phpt17 $second = $ps->item(1);
18 var_dump($second->textContent);
22 $dom = $second->ownerDocument;
24 $second->parentNode->appendChild($dom->createElement('p', '4'));
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-src/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_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 {
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 {
/php-src/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-src/ext/dom/
H A Dcharacterdata.c200 xmlChar *cur, *first, *second; in dom_character_data_insert_data() local
239 second = xmlUTF8Strsub(cur, (int)offset, length - (int)offset); in dom_character_data_insert_data()
243 xmlNodeAddContent(node, second); in dom_character_data_insert_data()
246 xmlFree(second); in dom_character_data_insert_data()
271 xmlChar *cur, *substring, *second; in dom_character_data_delete_data() local
313 substring = xmlStrcat(substring, second); in dom_character_data_delete_data()
317 xmlFree(second); in dom_character_data_delete_data()
343 xmlChar *cur, *substring, *second = NULL; in dom_character_data_replace_data() local
391 substring = xmlStrcat(substring, second); in dom_character_data_replace_data()
395 if (second) { in dom_character_data_replace_data()
[all …]
/php-src/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'

Completed in 41 milliseconds

12345678910>>...16