/PHP-8.0/ext/standard/tests/strings/ |
H A D | str_repeat.phpt | 43 -- after repeating 0 times is => 44 -- after repeating 1 times is => a 49 -- after repeating 0 times is => 55 -- after repeating 0 times is => 61 -- after repeating 0 times is => 62 -- after repeating 1 times is => 63 -- after repeating 2 times is => 64 -- after repeating 3 times is => 67 -- after repeating 0 times is => 73 -- after repeating 0 times is => [all …]
|
H A D | stripslashes_variation2.phpt | 106 string(31) "The string after addslashes is:" 112 string(31) "The string after addslashes is:" 118 string(31) "The string after addslashes is:" 124 string(31) "The string after addslashes is:" 130 string(31) "The string after addslashes is:" 136 string(31) "The string after addslashes is:" 142 string(31) "The string after addslashes is:" 148 string(31) "The string after addslashes is:" 154 string(31) "The string after addslashes is:" 160 string(31) "The string after addslashes is:" [all …]
|
H A D | stripslashes_basic.phpt | 22 var_dump("The string after addslashes is:", $str_addslashes); 33 string(31) "The string after addslashes is:" 35 string(33) "The string after stripslashes is:" 37 string(31) "The string after addslashes is:" 39 string(33) "The string after stripslashes is:" 41 string(31) "The string after addslashes is:" 43 string(33) "The string after stripslashes is:" 45 string(31) "The string after addslashes is:" 47 string(33) "The string after stripslashes is:" 49 string(31) "The string after addslashes is:" [all …]
|
H A D | bug21453.phpt | 7 <tr><td>first cell before < first cell after</td></tr> 8 <tr><td>second cell before < second cell after</td></tr> 16 first cell before < first cell after 17 second cell before < second cell after
|
H A D | str_replace_variation2.phpt | 68 -- String after replacing the search value is => -- 75 -- String after replacing the search value is => -- 82 -- String after replacing the search value is => -- 89 -- String after replacing the search value is => -- 96 -- String after replacing the search value is => -- 103 -- String after replacing the search value is => -- 110 -- String after replacing the search value is => -- 117 -- String after replacing the search value is => -- 124 -- String after replacing the search value is => -- 131 -- String after replacing the search value is => -- [all …]
|
/PHP-8.0/ext/standard/tests/serialize/ |
H A D | serialization_miscTypes_001.phpt | 86 echo "after serialization => "; 90 echo "after unserialization => "; 142 after unserialization => int(342391) 150 after unserialization => array(0) { 155 after unserialization => array(5) { 170 after unserialization => array(16) { 217 after unserialization => array(7) { 240 after unserialization => NULL 244 after unserialization => NULL 332 after unserialization => NULL [all …]
|
/PHP-8.0/ext/dom/tests/ |
H A D | DOM4_DOMNode_after.phpt | 2 DOMNode::after() 15 $element->after( 16 'text inserted after', 17 $dom->createElement('inserted-after', 'content') 20 $secondMark->after('text inserted after second'); 28 text inserted after 29 <inserted-after> 31 </inserted-after> 35 text inserted after second
|
/PHP-8.0/ext/date/tests/ |
H A D | bug49059.phpt | 13 print "\$diff->days after first diff: " . $diff->days . "\n"; 15 print "\$date1 after sub: " . $date1->format("Y-m-d") . "\n"; 17 print "\$date1 after second diff (called at \$date1): " . 21 print "\$date1 after third diff (called at \$date2): " . 28 $date1 after first diff: 2009-03-27 29 $diff->days after first diff: 26 30 $date1 after sub: 2009-03-25 31 $date1 after second diff (called at $date1): 2009-03-25 32 $diff->days after second diff: 24 33 $date1 after third diff (called at $date2): 2009-03-25 [all …]
|
/PHP-8.0/ext/intl/tests/ |
H A D | calendar_equals_before_after_basic.phpt | 2 IntlCalendar::equals(), ::before() and ::after() basic test 25 var_dump("1 after 2", $intlcal1->after($intlcal2)); 29 var_dump("1 after 3", $intlcal1->after($intlcal3)); 33 var_dump("3 after 2", intlcal_after($intlcal3, $intlcal2)); 44 string(9) "1 after 2" 50 string(9) "1 after 3" 56 string(9) "3 after 2"
|
H A D | calendar_before_after_error.phpt | 2 IntlCalendar::before()/after(): bad arguments 21 var_dump($c->after()); 32 var_dump($c->after(1)); 43 var_dump($c->after($c, 1)); 65 error: 0, IntlCalendar::after() expects exactly 1 argument, 0 given 69 error: 0, IntlCalendar::after(): Argument #1 ($other) must be of type IntlCalendar, int given 73 error: 0, IntlCalendar::after() expects exactly 1 argument, 2 given
|
/PHP-8.0/ext/mbstring/tests/ |
H A D | bug77454.phpt | 2 Bug #77454: mb_scrub() silently truncates after a null byte 7 $str = "before\0after"; 16 before\0after 17 before\0after 18 before\0after
|
/PHP-8.0/ext/pgsql/tests/ |
H A D | 08escape.phpt | 15 $after = pg_escape_string($before); 16 if ($expect === $after || $expect2 === $after) { 22 var_dump($after); 29 $after = pg_escape_bytea($before); 30 if ($expect === $after) { 36 var_dump($after); 74 $after = pg_escape_literal($before); 75 if ($expect === $after) { 81 var_dump($after); 88 if ($expect === $after) { [all …]
|
/PHP-8.0/ext/mysqli/tests/ |
H A D | mysqli_get_client_stats_ps.phpt | 40 $after = mysqli_get_client_stats(); 43 printf("[003] Unbuffered rows got increased after buffered PS, expecting %d got %d.\n", 45 $after['rows_fetched_from_client_ps_unbuffered']); 48 …if ($after['rows_fetched_from_client_ps_buffered'] != $stats['rows_fetched_from_client_ps_buffered… 51 $after['rows_fetched_from_client_ps_buffered']); 53 $stats = $after; 68 $after = mysqli_get_client_stats(); 73 $after['rows_fetched_from_client_ps_unbuffered']); 75 …if ($after['rows_fetched_from_client_ps_buffered'] != $stats['rows_fetched_from_client_ps_buffered… 78 $after['rows_fetched_from_client_ps_buffered']); [all …]
|
H A D | mysqli_get_client_stats_implicit_free.phpt | 28 $after = mysqli_get_client_stats(); 29 if ($after['implicit_free_result'] != $stats['implicit_free_result']) 31 $after['implicit_free_result'] - $stats['implicit_free_result']); 33 $stats = $after;
|
/PHP-8.0/ext/standard/tests/array/ |
H A D | array_pop.phpt | 53 Output after Pop is : 70 Output after Pop is : 83 Output after Pop is : 99 Output after Pop is : 112 Output after Pop is : 125 Output after Pop is : 138 Output after Pop is : 158 Output after Pop is : 170 Output after Pop is : 198 Output after Pop is : [all …]
|
H A D | 005.phpt | 79 Output after shift is : 96 Output after shift is : 109 Output after shift is : 125 Output after shift is : 138 Output after shift is : 151 Output after shift is : 164 Output after shift is : 184 Output after shift is : 196 Output after shift is : 224 Output after shift is : [all …]
|
H A D | array_push.phpt | 70 Output after push is : 89 Output after push is : 102 Output after push is : 118 Output after push is : 131 Output after push is : 144 Output after push is : 157 Output after push is : 177 Output after push is : 189 Output after push is : 217 Output after push is : [all …]
|
/PHP-8.0/ext/standard/tests/file/ |
H A D | copy_variation18.phpt | 2 Test copy() function: usage variations - stat after copy 5 /* Test copy(): checking stat of file before and after after copy operation */ 11 echo "*** Test copy() function: stat of file before and after copy ***\n"; 35 echo "Comparing the stats of file before and after copy operation => "; 46 *** Test copy() function: stat of file before and after copy *** 48 Comparing the stats of file before and after copy operation => bool(true)
|
H A D | fseek_variation3.phpt | 18 echo "after -4 seek: ".bin2hex(fread($h,1))."\n"; 20 echo "after seek back 1: ".bin2hex(fread($h,1))."\n"; 22 echo "after seek back 20: ".bin2hex(fread($h,1))."\n"; 40 after -4 seek: 42 after seek back 1: 39 44 after seek back 20:
|
H A D | ftruncate_variation6-win32.phpt | 57 echo "File content after truncating file to $new_size size : "; 292 File content after truncating file to 15 size : string(15) "line 301 File content after truncating file to 15 size : string(15) "line 310 File content after truncating file to 15 size : string(15) "line 319 File content after truncating file to 15 size : string(15) "line 328 File content after truncating file to 15 size : string(15) "line 337 File content after truncating file to 15 size : string(15) "line 346 File content after truncating file to 15 size : string(15) "line 355 File content after truncating file to 15 size : string(15) "line 364 File content after truncating file to 15 size : string(15) "line [all …]
|
H A D | ftruncate_variation6.phpt | 57 echo "File content after truncating file to $new_size size : "; 292 File content after truncating file to 15 size : string(15) "line 301 File content after truncating file to 15 size : string(15) "line 310 File content after truncating file to 15 size : string(15) "line 319 File content after truncating file to 15 size : string(15) "line 328 File content after truncating file to 15 size : string(15) "line 337 File content after truncating file to 15 size : string(15) "line 346 File content after truncating file to 15 size : string(15) "line 355 File content after truncating file to 15 size : string(15) "line 364 File content after truncating file to 15 size : string(15) "line [all …]
|
/PHP-8.0/Zend/tests/generators/ |
H A D | yield_in_finally.phpt | 10 echo "after return\n"; 14 echo "after yield\n"; 17 echo "after finally\n"; 29 after yield
|
/PHP-8.0/ext/standard/tests/general_functions/ |
H A D | is_resource_basic.phpt | 45 echo "\nResource type..var_dump after file open returns\n"; 47 echo "Resource type..after file open is_resource() returns"; 55 echo "\nResource type..var_dump after file close returns\n"; 57 echo "Resource type..after file close is_resource() returns"; 79 Resource type..var_dump after file open returns 81 Resource type..after file open is_resource() returns TRUE 83 Resource type..var_dump after file close returns 85 Resource type..after file close is_resource() returns FALSE
|
/PHP-8.0/ext/spl/tests/ |
H A D | spl_heap_isempty.phpt | 12 echo "Checking after insert: "; 15 echo "Checking after extract: "; 20 Checking after insert: bool(false) 21 Checking after extract: bool(true)
|
/PHP-8.0/Zend/tests/ |
H A D | bug76502.phpt | 19 echo "after : ", get_class($processed), ".previous == ", 27 after : Exception.previous == Exception 30 after : Error.previous == Error 33 after : Error.previous == Exception 36 after : Exception.previous == Error
|