| Current Path : /hdd/hdd21/main/php5/php-5.6.6/tests/lang/ |
| Current File : //hdd/hdd21/main/php5/php-5.6.6/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