Searched refs:ob_implicit_flush (Results 1 – 7 of 7) sorted by relevance
/PHP-7.2/tests/output/ |
H A D | ob_implicit_flush_error_001.phpt | 2 Test ob_implicit_flush() function : wrong number of arguments 5 /* Prototype : proto void ob_implicit_flush([int flag]) 11 echo "*** Testing ob_implicit_flush() : error conditions ***\n"; 14 //Test ob_implicit_flush with one more than the expected number of arguments 15 echo "\n-- Testing ob_implicit_flush() function with more than expected no. of arguments --\n"; 18 var_dump( ob_implicit_flush($flag, $extra_arg) ); 23 *** Testing ob_implicit_flush() : error conditions *** 25 -- Testing ob_implicit_flush() function with more than expected no. of arguments -- 27 Warning: ob_implicit_flush() expects at most 1 parameter, 2 given in %s on line 15
|
H A D | ob_implicit_flush_basic_001.phpt | 2 Test ob_implicit_flush() function : check return value (always null). 5 /* Prototype : proto void ob_implicit_flush([int flag]) 11 echo "*** Testing ob_implicit_flush() : check return value ***\n"; 13 var_dump(ob_implicit_flush()); 14 var_dump(ob_implicit_flush(true)); 15 var_dump(ob_implicit_flush(false)); 20 *** Testing ob_implicit_flush() : check return value ***
|
H A D | ob_implicit_flush_variation_001.phpt | 2 Test ob_implicit_flush() function : usage variation 7 /* Prototype : void ob_implicit_flush([int flag]) 13 echo "*** Testing ob_implicit_flush() : usage variation ***\n"; 102 var_dump( ob_implicit_flush($value) ); 107 *** Testing ob_implicit_flush() : usage variation *** 125 Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, array given, %s(97) 129 Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, array given, %s(97) 133 Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, array given, %s(97) 137 Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, array given, %s(97) 159 Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, string given, %s(97) [all …]
|
H A D | ob_implicit_flush_basic_002.phpt | 2 Test ob_implicit_flush() function : ensure implicit flushing does not apply to user buffers. 5 /* Prototype : proto void ob_implicit_flush([int flag]) 11 echo "*** Testing ob_implicit_flush() : ensure implicit flushing does not apply to user buffers. **… 16 ob_implicit_flush(1); 28 *** Testing ob_implicit_flush() : ensure implicit flushing does not apply to user buffers. ***
|
/PHP-7.2/main/ |
H A D | php_output.h | 260 PHP_FUNCTION(ob_implicit_flush);
|
H A D | output.c | 1519 PHP_FUNCTION(ob_implicit_flush) in PHP_FUNCTION() argument
|
/PHP-7.2/ext/standard/ |
H A D | basic_functions.c | 3299 PHP_FE(ob_implicit_flush, arginfo_ob_implicit_flush)
|
Completed in 36 milliseconds