Searched refs:ob_start (Results 1 – 25 of 442) sorted by relevance
12345678910>>...18
/php-src/tests/output/ |
H A D | ob_start_error_002.phpt | 2 Test wrong number of arguments and wrong arg types for ob_start() 15 var_dump(ob_start(array("nonExistent","f"))); 16 var_dump(ob_start(array("C","nonExistent"))); 17 var_dump(ob_start("C::no")); 18 var_dump(ob_start("no")); 22 Warning: ob_start(): class "nonExistent" not found in %s on line %d 24 Notice: ob_start(): Failed to create buffer in %s on line %d 29 Notice: ob_start(): Failed to create buffer in %s on line 13 32 Warning: ob_start(): class C does not have a method "no" in %s on line %d 34 Notice: ob_start(): Failed to create buffer in %s on line 14 [all …]
|
H A D | ob_start_basic_006.phpt | 46 var_dump(ob_start(array("f"))); 49 var_dump(ob_start(array("f", "f"))); 52 var_dump(ob_start(array("f", "C::g", "f", "C::g"))); 55 var_dump(ob_start(array("f", "non_existent", "f"))); 58 var_dump(ob_start(array("f", "non_existent", "f", "f"))); 62 var_dump(ob_start(array($c, "h"))); 65 var_dump(ob_start(array($c, "h"))); 78 Notice: ob_start(): Failed to create buffer in %s on line %d 84 Warning: ob_start(): class "f" not found in %s on line %d 86 Notice: ob_start(): Failed to create buffer in %s on line %d [all …]
|
H A D | gh16135.phpt | 5 ob_start(null, 0); 6 ob_start(null, 1); 7 ob_start(null, 2); 8 ob_start(null, 8191); 9 ob_start(null, 8192); 10 ob_start(null, 8193);
|
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_013.phpt | 26 ob_start(); 27 ob_start('a'); 28 ob_start('b'); 29 ob_start('c'); 30 ob_start('d'); 31 ob_start(['E', 'f']); 32 ob_start([$e, 'g']); 33 ob_start($e); 34 ob_start(function ($s) { return $s; }); 35 ob_start();
|
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. 11 ob_start(); 18 var_dump(ob_start('f')); 22 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. 13 var_dump(ob_start(array($c))); 17 Warning: ob_start(): array callback must have exactly two members in %s on line %d 19 Notice: ob_start(): Failed to create buffer in %s on line %d
|
H A D | ob_start_error_004.phpt | 2 Test ob_start() with non existent callback method. 13 var_dump(ob_start(array($c, 'f'))); 17 Warning: ob_start(): class C does not have a method "f" in %s on line %d 19 Notice: ob_start(): Failed to create buffer in %s on line %d
|
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 | bug60282.phpt | 7 ob_start(); 8 ob_start(); 9 ob_start('ob_gzhandler');
|
H A D | ob_start_basic_005.phpt | 2 ob_start(): non-static method as static callbacks. 22 var_dump(ob_start('C::h')); 27 Warning: ob_start(): non-static method C::h() cannot be called statically in %s on line %d 29 Notice: ob_start(): Failed to create buffer in %s on line %d
|
H A D | ob_start_error_001.phpt | 2 Test wrong number of arguments and wrong arg types for ob_start() 19 var_dump(ob_start(1.5)); 25 Warning: ob_start(): no array or string given in %s on line %d 27 Notice: ob_start(): Failed to create buffer in %s on line %d
|
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();
|
H A D | ob_start_basic_001.phpt | 2 Test return type and value for ob_start() 9 var_dump(ob_start());
|
H A D | gh15181.phpt | 5 ob_start(function () { 6 throw new Exception('ob_start');
|
/php-src/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) { 31 *** Testing ob_start() : closures as output handlers ***
|
H A D | bug80771.phpt | 5 ob_start(); 9 ob_start();
|
/php-src/Zend/tests/ |
H A D | gh10695_6.phpt | 9 ob_start(function () { 10 throw new \Exception('ob_start'); 14 Caught: ob_start
|
/php-src/ext/mbstring/tests/ |
H A D | mb_output_handler_pattern-05.phpt | 8 ob_start(); 9 ob_start('mb_output_handler');
|
H A D | mb_output_handler_pattern-11.phpt | 8 ob_start(); 9 ob_start('mb_output_handler');
|
/php-src/tests/lang/ |
H A D | bug24951.phpt | 11 ob_start("test"); 18 ob_start("test"); 26 ob_start("test");
|
/php-src/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");
|
Completed in 17 milliseconds
12345678910>>...18