summaryrefslogtreecommitdiff
path: root/ext/standard/tests/general_functions/bug71891.phpt
blob: b1f7e200d8d1a91710c78e9cb96e2246e059a282 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Bug #71891 (header_register_callback() and register_shutdown_function())
--FILE--
<?php

header_register_callback(function () {
	echo 'header';
	register_shutdown_function(function () {
		echo 'shutdown';
	});
});
?>
--EXPECT--
header