php-src/tests/lang/bug22690.phpt
2017-02-03 18:52:57 +01:00

15 lines
284 B
PHP

--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
--EXPECTF--
Deprecated: Function create_function() is deprecated in %s on line %d
BAR
BAR