blob: 3375a6bf08f55a5cdae3bd5ae08591f0a1070b4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--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
|