php-src/tests/lang/bug22690.phpt

15 lines
284 B
Plaintext
Raw Normal View History

2003-07-16 08:38:54 +08:00
--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
2017-01-31 05:09:32 +08:00
--EXPECTF--
Deprecated: Function create_function() is deprecated in %s on line %d
2003-07-16 08:38:54 +08:00
BAR
BAR