Added test case for bug #22690

This commit is contained in:
foobar 2003-07-16 00:38:54 +00:00
parent 72aa28d0c3
commit 7fe8f6cf94

12
tests/lang/bug22690.phpt Normal file
View file

@ -0,0 +1,12 @@
--TEST--
Bug #22690 (ob_start() is broken with create_function() callbacks)
--FILE--
<?php
$foo = create_function('$s', 'return strtoupper($s);');
ob_start($foo);
echo $foo("bar\n");
?>
bar
--EXPECT--
BAR
BAR