/PHP-5.5/ext/standard/tests/array/ |
H A D | array_unshift_variation2.phpt | 134 string(6) "second" 151 string(6) "second" 165 string(6) "second" 182 string(6) "second" 196 string(6) "second" 213 string(6) "second" 227 string(6) "second" 244 string(6) "second" 258 string(6) "second" 275 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"; 22 -- pass null as second parameter to get back all columns indexed by third parameter -- 43 -- pass null as second parameter and bogus third param to get back zero-indexed array of all column… 64 -- pass null as second parameter and no third param to get back array_values(input) --
|
H A D | array_unshift_variation9.phpt | 107 string(6) "second" 124 string(6) "second" 139 string(6) "second" 157 string(6) "second" 174 string(6) "second" 194 string(6) "second" 212 string(6) "second" 233 string(6) "second" 249 string(6) "second" 268 string(6) "second" [all …]
|
H A D | array_unshift_object.phpt | 66 $array = array('f' => "first", "s" => 'second', 1, 2.222); 117 string(6) "second" 137 string(6) "second" 152 string(6) "second" 170 string(6) "second" 189 string(6) "second" 211 string(6) "second" 228 string(6) "second" 248 string(6) "second" 263 string(6) "second" [all …]
|
H A D | array_unshift_variation7.phpt | 19 $array = array('f' => "first", "s" => 'second', 1, 2.222); 67 string(6) "second" 84 string(6) "second" 99 string(6) "second" 117 string(6) "second" 131 string(6) "second" 148 string(6) "second" 162 string(6) "second" 179 string(6) "second" 195 string(6) "second" [all …]
|
/PHP-5.5/ext/bcmath/ |
H A D | bcmath.c | 225 bc_num first, second, result; in PHP_FUNCTION() local 253 bc_free_num(&second); in PHP_FUNCTION() 266 bc_num first, second, result; in PHP_FUNCTION() local 293 bc_free_num(&second); in PHP_FUNCTION() 333 bc_free_num(&second); in PHP_FUNCTION() 379 bc_free_num(&second); in PHP_FUNCTION() 415 bc_free_num(&second); in PHP_FUNCTION() 458 bc_free_num(&second); in PHP_FUNCTION() 499 bc_free_num(&second); in PHP_FUNCTION() 550 bc_num first, second; in PHP_FUNCTION() local [all …]
|
/PHP-5.5/ext/imap/tests/ |
H A D | imap_fetch_overview_variation2.phpt | 97 echo "\n-- Testing with second argument value: "; 123 -- Testing with second argument value: int(0) 126 -- Testing with second argument value: int(1) 138 -- Testing with second argument value: int(12345) 141 -- Testing with second argument value: int(-2345) 156 -- Testing with second argument value: float(0.5) 159 -- Testing with second argument value: NULL 162 -- Testing with second argument value: NULL 165 -- Testing with second argument value: bool(true) 220 -- Testing with second argument value: NULL [all …]
|
/PHP-5.5/ext/date/tests/ |
H A D | bug48187.phpt | 15 var_dump('microtime() difference less 1 second'); 17 var_dump('microtime() difference greater or equal 1 second'); 21 var_dump('time() difference less 1 second'); 23 var_dump('time() difference greater or equal 1 second'); 27 string(36) "microtime() difference less 1 second" 28 string(31) "time() difference less 1 second"
|
H A D | date-lenient.phpt | 24 [second] => 46 [second] => 68 [second] => 90 [second] => 112 [second] => 133 [second] =>
|
H A D | bug36988.phpt | 8 echo (microtime(true) - $start) < 1 ? "smaller than one second" : "more than a second"; 11 smaller than one second
|
H A D | date_parse_001.phpt | 30 ["second"]=> 58 ["second"]=> 86 ["second"]=> 122 ["second"]=> 152 ["second"]=> 180 ["second"]=> 208 ["second"]=> 246 ["second"]=> 282 ["second"]=>
|
/PHP-5.5/ext/standard/tests/strings/ |
H A D | chop_variation5.phpt | 16 var_dump ( chop("chop test \t\0 ") ); /* without second Argument */ 17 …var_dump ( chop("chop test " , "") ); /* no characters in second Argument … 18 var_dump ( chop("chop test ", NULL) ); /* with NULL as second Argument */ 19 …var_dump ( chop("chop test ", true) ); /* with boolean value as second Argu… 20 …var_dump ( chop("chop test ", " ") ); /* with single space as second Argum… 21 …hop test \t\n\r\0\x0B", "\t\n\r\0\x0B") ); /* with multiple escape sequences as second Argument */ 22 …var_dump ( chop("chop testABCXYZ", "A..Z") ); /* with characters range as second A… 23 …var_dump ( chop("chop test0123456789", "0..9") ); /* with numbers range as second Argu… 24 …"chop test$#@", "#@$") ); /* with some special characters as second Argument */
|
H A D | strtr_variation8.phpt | 93 Warning: strtr(): The second argument is not an array in %s on line %d 98 Warning: strtr(): The second argument is not an array in %s on line %d 103 Warning: strtr(): The second argument is not an array in %s on line %d 108 Warning: strtr(): The second argument is not an array in %s on line %d 113 Warning: strtr(): The second argument is not an array in %s on line %d 118 Warning: strtr(): The second argument is not an array in %s on line %d 132 Warning: strtr(): The second argument is not an array in %s on line %d 137 Warning: strtr(): The second argument is not an array in %s on line %d 142 Warning: strtr(): The second argument is not an array in %s on line %d 147 Warning: strtr(): The second argument is not an array in %s on line %d [all …]
|
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 | 30 var_dump ( ltrim(" \t\0 ltrim test") ); /* without second Argument */ 31 …var_dump ( ltrim(" ltrim test" , "") ); /* no characters in second Argumen… 32 var_dump ( ltrim(" ltrim test", NULL) ); /* with NULL as second Argument */ 33 …var_dump ( ltrim(" ltrim test", true) ); /* with boolean value as second Ar… 34 …var_dump ( ltrim(" ltrim test", " ") ); /* with single space as second Arg… 35 …\n\r\0\x0B ltrim test", "\t\n\r\0\x0B") ); /* with multiple escape sequences as second Argument */ 36 …var_dump ( ltrim("ABCXYZltrim test", "A..Z") ); /* with characters range as second… 37 …var_dump ( ltrim("0123456789ltrim test", "0..9") ); /* with numbers range as second Ar… 38 …@$#ltrim test", "#@$") ); /* with some special characters as second Argument */
|
H A D | rtrim.phpt | 17 var_dump ( rtrim("rtrim test \t\0 ") ); /* without second Argument */ 18 …var_dump ( rtrim("rtrim test " , "") ); /* no characters in second Argumen… 19 var_dump ( rtrim("rtrim test ", NULL) ); /* with NULL as second Argument */ 20 …var_dump ( rtrim("rtrim test ", true) ); /* with boolean value as second Ar… 21 …var_dump ( rtrim("rtrim test ", " ") ); /* with single space as second Arg… 22 …rim test \t\n\r\0\x0B", "\t\n\r\0\x0B") ); /* with multiple escape sequences as second Argument */ 23 …var_dump ( rtrim("rtrim testABCXYZ", "A..Z") ); /* with characters range as second… 24 …var_dump ( rtrim("rtrim test0123456789", "0..9") ); /* with numbers range as second Ar… 25 …rtrim test$#@", "#@$") ); /* with some special characters as second Argument */
|
H A D | parse_str_basic1.phpt | 14 $s1 = "first=val1&second=val2&third=val3"; 16 var_dump($first, $second, $third); 19 $s1 = "first=val1&second=val2&third=val3"; 25 $s1 = "first=val1&second=val2&third=val3"; 49 ["second"]=> 60 ["second"]=> 71 ["second"]=>
|
H A D | strtr_variation9.phpt | 91 Warning: strtr(): The second argument is not an array in %s on line %d 97 Warning: strtr(): The second argument is not an array in %s on line %d 103 Warning: strtr(): The second argument is not an array in %s on line %d 109 Warning: strtr(): The second argument is not an array in %s on line %d 115 Warning: strtr(): The second argument is not an array in %s on line %d 121 Warning: strtr(): The second argument is not an array in %s on line %d 167 Warning: strtr(): The second argument is not an array in %s on line %d 173 Warning: strtr(): The second argument is not an array in %s on line %d 179 Warning: strtr(): The second argument is not an array in %s on line %d 185 Warning: strtr(): The second argument is not an array in %s on line %d [all …]
|
/PHP-5.5/tests/classes/ |
H A D | final.phpt | 17 class second extends first { 19 echo "Call to function second::show()\n"; 23 $t2 = new second(); 30 Call to function second::show()
|
H A D | private_006b.phpt | 2 ZE2 A private method can be overwritten in a second derived class 21 class second extends first { 24 //$t2 = new second(); 27 class third extends second {
|
H A D | private_006.phpt | 2 ZE2 A private method can be overwritten in a second derived class 19 class second extends first { 22 second::do_show(); 24 class third extends second {
|
/PHP-5.5/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'
|
/PHP-5.5/ext/dom/ |
H A D | characterdata.c | 259 xmlChar *cur, *first, *second; in PHP_FUNCTION() local 286 second = xmlUTF8Strsub(cur, offset, length - offset); in PHP_FUNCTION() 291 xmlNodeAddContent(node, second); in PHP_FUNCTION() 294 xmlFree(second); in PHP_FUNCTION() 307 xmlChar *cur, *substring, *second; in PHP_FUNCTION() local 343 substring = xmlStrcat(substring, second); in PHP_FUNCTION() 348 xmlFree(second); in PHP_FUNCTION() 362 xmlChar *cur, *substring, *second = NULL; in PHP_FUNCTION() local 403 substring = xmlStrcat(substring, second); in PHP_FUNCTION() 408 if (second) { in PHP_FUNCTION() [all …]
|