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