/PHP-7.0/ext/intl/tests/ |
H A D | calendar_equals_before_after_basic.phpt | 2 IntlCalendar::equals(), ::before() and ::after() basic test 24 var_dump("1 before 2", $intlcal1->before($intlcal2)); 28 var_dump("1 before 3", $intlcal1->before($intlcal3)); 32 var_dump("3 before 2", intlcal_before($intlcal3, $intlcal2)); 43 string(10) "1 before 2" 49 string(10) "1 before 3" 55 string(10) "3 before 2"
|
H A D | calendar_before_after_error.phpt | 2 IntlCalendar::before()/after(): bad arguments 26 var_dump($c->before()); 37 var_dump($c->before(1)); 48 var_dump($c->before($c, 1)); 67 error: 2, IntlCalendar::before() expects exactly 1 parameter, 0 given 68 error: 2, IntlCalendar::before(): intlcal_before/after: bad arguments 72 error: 0, Argument 1 passed to IntlCalendar::before() must be an instance of IntlCalendar, integer … 77 error: 2, IntlCalendar::before() expects exactly 1 parameter, 2 given 78 error: 2, IntlCalendar::before(): intlcal_before/after: bad arguments
|
/PHP-7.0/ext/mysqli/tests/ |
H A D | mysqli_get_client_stats_off.phpt | 17 $before = mysqli_get_client_stats(); 18 if (!is_array($before) || empty($before)) { 19 printf("[001] Expecting non-empty array, got %s.\n", gettype($before)); 20 var_dump($before); 28 if ($before !== $after) { 30 var_dump($before);
|
H A D | mysqli_get_connection_stats_off.phpt | 24 $before = mysqli_get_connection_stats($link); 25 if (!is_array($before) || empty($before)) { 26 printf("[002] Expecting non-empty array, got %s.\n", gettype($before)); 27 var_dump($before); 37 if ($before !== $after) { 39 var_dump($before);
|
H A D | mysqli_get_client_stats_skipped.phpt | 27 $before = mysqli_get_client_stats(); 28 printf("BEFORE: rows_skipped_normal = %d\n", $before['rows_skipped_normal']); 42 if ($after['rows_skipped_normal'] != $before['rows_skipped_normal'] + 1) 44 "but before=%d after=%d\n", $before['rows_skipped_normal'], $after['rows_skipped_normal']);
|
/PHP-7.0/ext/pgsql/tests/ |
H A D | 08escape.phpt | 12 $before = "ABC\\ABC\'"; 15 $after = pg_escape_string($before); 21 var_dump($before); 27 $before = "ABC\\ABC"; 29 $after = pg_escape_bytea($before); 35 var_dump($before); 72 $before = "ABC\\ABC\'"; 74 $after = pg_escape_literal($before); 80 var_dump($before); 85 $before = "ABC\\ABC\'"; [all …]
|
/PHP-7.0/ext/standard/tests/strings/ |
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
|
/PHP-7.0/Zend/tests/generators/ |
H A D | yield_in_finally.phpt | 8 echo "before return\n"; 12 echo "before yield\n"; 26 before return 27 before yield
|
/PHP-7.0/Zend/tests/generators/finally/ |
H A D | return_return.phpt | 9 echo "before return\n"; 13 echo "before return in inner finally\n"; 31 before return 32 before return in inner finally
|
/PHP-7.0/Zend/tests/generators/errors/ |
H A D | yield_in_force_closed_finally_error.phpt | 8 echo "before yield\n"; 12 echo "before yield in finally\n"; 26 before yield 27 before yield in finally
|
/PHP-7.0/tests/lang/ |
H A D | foreachLoop.012.phpt | 75 --> State of array before loop: 87 --> State of array before loop: 102 --> State of array before loop: 120 --> State of array before loop: 144 --> State of array before loop: 156 --> State of array before loop: 171 --> State of array before loop: 189 --> State of array before loop: 213 --> State of array before loop: 225 --> State of array before loop: [all …]
|
H A D | foreachLoop.014.phpt | 76 --> State of referenced array before loop: 88 --> State of referenced array before loop: 103 --> State of referenced array before loop: 121 --> State of referenced array before loop: 145 --> State of referenced array before loop: 157 --> State of referenced array before loop: 172 --> State of referenced array before loop: 190 --> State of referenced array before loop: 214 --> State of referenced array before loop: 226 --> State of referenced array before loop: [all …]
|
H A D | foreachLoop.013.phpt | 75 --> State of array before loop: 87 --> State of array before loop: 103 --> State of array before loop: 122 --> State of array before loop: 148 --> State of array before loop: 160 --> State of array before loop: 175 --> State of array before loop: 193 --> State of array before loop: 217 --> State of array before loop: 229 --> State of array before loop: [all …]
|
H A D | foreachLoop.015.phpt | 77 --> State of referenced array before loop: 89 --> State of referenced array before loop: 105 --> State of referenced array before loop: 124 --> State of referenced array before loop: 150 --> State of referenced array before loop: 162 --> State of referenced array before loop: 177 --> State of referenced array before loop: 195 --> State of referenced array before loop: 219 --> State of referenced array before loop: 231 --> State of referenced array before loop: [all …]
|
H A D | foreachLoopObjects.005.phpt | 2 Foreach loop tests - removing properties before and after the current property during the loop. 14 echo "\nRemoving properties before the current element from an iterated object.\n"; 29 echo "\nRemoving properties before the current element from an iterated object.\n"; 47 Removing properties before the current element from an iterated object. 63 Removing properties before the current element from an iterated object.
|
/PHP-7.0/Zend/tests/ |
H A D | bug38220.phpt | 30 echo "before call $method\n"; 63 before call func1 71 before call close 78 before call func1 86 before call close
|
H A D | bug34786.phpt | 14 echo "before: ".error_reporting()."\n"; 19 before: 1
|
/PHP-7.0/ext/standard/tests/file/ |
H A D | copy_variation18.phpt | 10 /* Test copy(): checking stat of file before and after after copy operation */ 16 echo "*** Test copy() function: stat of file before and after copy ***\n"; 40 echo "Comparing the stats of file before and after copy operation => "; 53 *** Test copy() function: stat of file before and after copy *** 55 Comparing the stats of file before and after copy operation => bool(true)
|
H A D | copy_variation11.phpt | 23 echo "Size of source before copy operation => "; 24 var_dump( filesize($file) ); //size of source before copy 26 echo "Size of destination before copy operation => "; 27 var_dump( filesize($dir) ); //size of destination before copy 56 Size of source before copy operation => int(300) 57 Size of destination before copy operation => int(%d)
|
/PHP-7.0/tests/basic/ |
H A D | timeout_variation_6.phpt | 2 Timeout within function trowing exception before timeout reached 17 throw new Exception("exception before timeout"); 25 Fatal error: Uncaught Exception: exception before timeout in %s:%d
|
/PHP-7.0/ext/spl/tests/ |
H A D | arrayObject_clone_basic2.phpt | 9 $c->p1 = 'new prop added to c before clone'; 21 string(32) "new prop added to c before clone" 31 string(32) "new prop added to c before clone" 42 string(32) "new prop added to c before clone"
|
H A D | arrayObject_clone_basic3.phpt | 14 $wrappedObject->dynamic1 = 'new prop added to $wrappedObject before clone'; 29 string(45) "new prop added to $wrappedObject before clone" 43 string(45) "new prop added to $wrappedObject before clone" 60 string(45) "new prop added to $wrappedObject before clone" 76 string(45) "new prop added to $wrappedObject before clone"
|
/PHP-7.0/ext/standard/tests/array/ |
H A D | shuffle_basic1.phpt | 14 * before and after shuffle() function is applied on it 27 // printing the input array with integers before the shuffle operation 28 echo "\n-- input array of integers before shuffle() function is applied --\n"; 40 // printing the input array with strings before the shuffle operation 41 echo "\n-- input array of strings before shuffle() function is applied --\n"; 56 -- input array of integers before shuffle() function is applied -- 103 -- input array of strings before shuffle() function is applied --
|
/PHP-7.0/ext/oci8/tests/ |
H A D | define6.phpt | 61 echo "Test 3 - define before cursor execute\n"; 74 echo "Test 4 - define before top level execute\n"; 87 echo "Test 5 - define before bind\n"; 129 Test 3 - define before cursor execute 131 Test 4 - define before top level execute 133 Test 5 - define before bind
|
/PHP-7.0/ext/standard/tests/serialize/ |
H A D | bug31402.phpt | 29 $before = new TestY(); 30 $ser = serialize($before); 33 var_dump($before, $after);
|