blob: d20c3b0c2487ad09f1a2b4ed132c5a7fd44e9947 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Bug #65593 (ob_start(function(){ob_start();});)
--FILE--
<?php
echo "Test\n";
ob_start(function(){ob_start();});
?>
--EXPECTF--
Test
Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %sbug65593.php on line %d
|