mirror of
https://github.com/php/php-src.git
synced 2026-03-26 09:12:14 +01:00
14 lines
285 B
PHP
14 lines
285 B
PHP
--TEST--
|
|
Bug #65593 (ob_start(function(){ob_start();});)
|
|
--FILE--
|
|
<?php
|
|
echo "Test\n";
|
|
|
|
ob_start(function(){ob_start();});
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
Test
|
|
|
|
Catchable fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %sbug65593.php on line %d
|