Searched refs:ob_start (Results 1 – 25 of 406) sorted by relevance
12345678910>>...17
/PHP-7.2/tests/output/ |
H A D | ob_start_error_002.phpt | 2 Test wrong number of arguments and wrong arg types for ob_start() 16 var_dump(ob_start(array("nonExistent","f"))); 17 var_dump(ob_start(array("C","nonExistent"))); 18 var_dump(ob_start("C::no")); 19 var_dump(ob_start("no")); 23 Warning: ob_start(): class 'nonExistent' not found in %s on line 13 25 Notice: ob_start(): failed to create buffer in %s on line 13 30 Notice: ob_start(): failed to create buffer in %s on line 14 33 Warning: ob_start(): class 'C' does not have a method 'no' in %s on line 15 35 Notice: ob_start(): failed to create buffer in %s on line 15 [all …]
|
H A D | ob_start_basic_006.phpt | 47 var_dump(ob_start(array("f"))); 50 var_dump(ob_start(array("f", "f"))); 53 var_dump(ob_start(array("f", "C::g", "f", "C::g"))); 56 var_dump(ob_start(array("f", "non_existent", "f"))); 59 var_dump(ob_start(array("f", "non_existent", "f", "f"))); 63 var_dump(ob_start(array($c, "h"))); 66 var_dump(ob_start(array($c, "h"))); 79 Notice: ob_start(): failed to create buffer in %s on line 44 85 Warning: ob_start(): class 'f' not found in %s on line 47 87 Notice: ob_start(): failed to create buffer in %s on line 47 [all …]
|
H A D | ob_start_error_001.phpt | 2 Test wrong number of arguments and wrong arg types for ob_start() 6 * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]]) 20 var_dump(ob_start($arg_1, $arg_2, $arg_3, $extra_arg)); 23 var_dump(ob_start(1.5)); 26 var_dump(ob_start("justPrint", "this should be an int")); 29 var_dump(ob_start("justPrint", 0, "this should be a bool")); 35 Warning: ob_start() expects at most 3 parameters, 4 given in %s on line 17 40 Warning: ob_start(): no array or string given in %s on line 20 42 Notice: ob_start(): failed to create buffer in %s on line 20 47 Warning: ob_start() expects parameter 2 to be integer, string given in %s on line 23 [all …]
|
H A D | bug65593.phpt | 2 Bug #65593 (ob_start(function(){ob_start();});) 7 ob_start(function(){ob_start();}); 12 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %sbug6…
|
H A D | ob_012.phpt | 6 ob_start(); 7 ob_start(); 8 ob_start(); 9 ob_start();
|
H A D | ob_start_error_005.phpt | 2 ob_start(): ensure buffers can't be added from within callback. 7 * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]]) 12 ob_start(); 19 var_dump(ob_start('f')); 23 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %s on …
|
H A D | ob_start_error_003.phpt | 2 Test ob_start() with object supplied but no method. 6 * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]]) 14 var_dump(ob_start(array($c))); 18 Warning: ob_start(): array must have exactly two members in %s on line %d 20 Notice: ob_start(): failed to create buffer in %s on line 11
|
H A D | ob_start_error_004.phpt | 2 Test ob_start() with non existent callback method. 6 * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]]) 14 var_dump(ob_start(array($c, 'f'))); 18 Warning: ob_start(): class 'C' does not have a method 'f' in %s on line %d 20 Notice: ob_start(): failed to create buffer in %s on line 11
|
H A D | ob_013.phpt | 10 ob_start(); 11 ob_start('a'); 12 ob_start('b'); 13 ob_start('c'); 14 ob_start('d'); 15 ob_start();
|
H A D | ob_start_callbacks.phpt | 2 Test ob_start() with callbacks in variables 8 ob_start($a); 19 ob_start($a); 24 ob_start(array('foo', 'out')); 32 ob_start($a);
|
H A D | ob_start_basic_005.phpt | 2 ob_start(): non-static method as static callbacks. 6 * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]]) 23 var_dump(ob_start('C::h')); 28 Warning: ob_start(): non-static method C::h() should not be called statically in %s on line 20
|
H A D | bug60282.phpt | 7 ob_start(); 8 ob_start(); 9 ob_start('ob_gzhandler');
|
H A D | ob_start_basic_001.phpt | 2 Test return type and value for ob_start() 6 * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]]) 10 var_dump(ob_start());
|
H A D | bug70970.phpt | 15 ob_start(); 23 ob_start('obHandler'); 28 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %sbug7…
|
H A D | ob_002.phpt | 2 output buffering - ob_start 5 ob_start();
|
H A D | ob_005.phpt | 5 ob_start(); 7 ob_start();
|
/PHP-7.2/ext/standard/tests/general_functions/ |
H A D | ob_start_closures.phpt | 2 Test ob_start() function : closures as output handlers 7 echo "*** Testing ob_start() : closures as output handlers ***\n"; 9 ob_start(function ($output) { 13 ob_start(function ($output) { 32 *** Testing ob_start() : closures as output handlers ***
|
/PHP-7.2/ext/standard/tests/array/ |
H A D | bug71220.phpt | 2 Bug #71220 (Null pointer deref (segfault) in compact via ob_start) 5 ob_start("compact");
|
/PHP-7.2/Zend/tests/ |
H A D | bug71221.phpt | 2 Bug #71221 (Null pointer deref (segfault) in get_defined_vars via ob_start) 5 ob_start("get_defined_vars");
|
/PHP-7.2/tests/lang/ |
H A D | bug24951.phpt | 11 ob_start("test"); 18 ob_start("test"); 26 ob_start("test");
|
H A D | bug23489.phpt | 2 Bug #23489 (ob_start() is broken with method callbacks) 7 ob_start(
|
H A D | bug22690.phpt | 2 Bug #22690 (ob_start() is broken with create_function() callbacks) 6 ob_start($foo);
|
/PHP-7.2/ext/mbstring/tests/ |
H A D | mb_output_handler_pattern-05.phpt | 10 ob_start(); 11 ob_start('mb_output_handler');
|
H A D | mb_output_handler_pattern-11.phpt | 10 ob_start(); 11 ob_start('mb_output_handler');
|
/PHP-7.2/ext/spl/tests/ |
H A D | bug77751.phpt | 2 Bug #77751: Writing to SplFileObject in ob_start gives segfault 9 ob_start(function ($buffer) use ($logfile) {
|
Completed in 28 milliseconds
12345678910>>...17