1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/tests/output/ob_start_error_005.phpt
2020-06-24 13:13:44 +02:00

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