/php-src/ext/standard/tests/array/ |
H A D | array_unshift_variation2.phpt | 129 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 D | array_intersect_key_variation8.phpt | 12 'second' => array('yellow' => 7), 21 'second' => array('cyan' => 8), 38 ["second"]=> 52 ["second"]=>
|
H A D | array_unshift_object.phpt | 61 $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 D | array_column_variant.phpt | 11 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 D | array_unshift_variation9.phpt | 102 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 D | array_unshift_variation7.phpt | 14 $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 D | array_unshift_variation8.phpt | 14 $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/standard/tests/strings/ |
H A D | chop_variation5.phpt | 11 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 D | bug20261.phpt | 6 $second = $first; 10 echo "2: ".$second."\n"; 13 $rot = str_rot13($second); 16 echo "2: ".$second."\n";
|
H A D | bug21453.phpt | 8 <tr><td>second cell before < second cell after</td></tr> 17 second cell before < second cell after
|
H A D | ltrim.phpt | 24 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 D | rtrim.phpt | 9 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 D | parse_str_basic1.phpt | 9 $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/modern/token_list/ |
H A D | attlist.phpt | 12 <!ATTLIST child class CDATA "first second"> 29 class: first second 34 string(12) "first second" 40 string(6) "second" 45 <!ATTLIST child class CDATA "first second"> 47 <root><child class="second"/></root>
|
/php-src/ext/dom/tests/ |
H A D | getElementsByTagName_liveness_deallocated_document.phpt | 17 $second = $ps->item(1); 18 var_dump($second->textContent); 22 $dom = $second->ownerDocument; 24 $second->parentNode->appendChild($dom->createElement('p', '4'));
|
H A D | DOM4_DOMNode_after.phpt | 10 $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 D | DOM4_DOMNode_before.phpt | 10 $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 D | final.phpt | 15 class second extends first { 17 echo "Call to function second::show()\n"; 21 $t2 = new second(); 28 Call to function second::show()
|
H A D | private_006b.phpt | 2 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 D | private_006.phpt | 2 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 D | date-lenient.phpt | 24 [second] => 46 [second] => 68 [second] => 90 [second] => 112 [second] => 133 [second] =>
|
H A D | date_parse_001.phpt | 29 ["second"]=> 57 ["second"]=> 85 ["second"]=> 121 ["second"]=> 151 ["second"]=> 179 ["second"]=> 207 ["second"]=> 245 ["second"]=> 281 ["second"]=>
|
/php-src/ext/dom/ |
H A D | characterdata.c | 191 xmlChar *first, *second; in dom_character_data_insert_data() local 226 second = xmlUTF8Strsub(cur, (int)offset, length - (int)offset); in dom_character_data_insert_data() 230 xmlNodeAddContent(node, second); in dom_character_data_insert_data() 233 xmlFree(second); in dom_character_data_insert_data() 258 xmlChar *substring, *second; in dom_character_data_delete_data() local 296 substring = xmlStrcat(substring, second); in dom_character_data_delete_data() 300 xmlFree(second); in dom_character_data_delete_data() 326 xmlChar *substring, *second = NULL; in dom_character_data_replace_data() local 370 substring = xmlStrcat(substring, second); in dom_character_data_replace_data() 374 if (second) { in dom_character_data_replace_data() [all …]
|
/php-src/Zend/tests/ |
H A D | bug66286.phpt | 10 class second extends first { 19 $objFirst = new second('123'); 20 $objSecond = new second('321');
|
H A D | bug46241.phpt | 17 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'
|