mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
b5c7a83dca
Closes GH-5759
23 lines
394 B
PHP
23 lines
394 B
PHP
--TEST--
|
|
ob_start(): ensure buffers can't be added from within callback.
|
|
--FILE--
|
|
<?php
|
|
|
|
/*
|
|
* Function is implemented in main/output.c
|
|
*/
|
|
|
|
function f($str) {
|
|
ob_start();
|
|
echo "hello";
|
|
ob_end_flush();
|
|
return $str;
|
|
}
|
|
|
|
|
|
var_dump(ob_start('f'));
|
|
echo "done";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %s on line %d
|