
| Path : /usr/src/php/tests/lang/ |
| Current File : //usr/src/php/tests/lang/bug22690.phpt |
--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