summaryrefslogtreecommitdiff
path: root/tests/lang/bug22690.phpt
blob: 9d5444051bd5dc16113f8346dc7700b419eb24e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--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