mirror of
https://github.com/php/php-src.git
synced 2024-12-18 22:41:20 +08:00
15 lines
284 B
PHP
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
|