summaryrefslogtreecommitdiff
path: root/ext/standard/tests/general_functions/bug71891.phpt
blob: 4de58f2c29bdb4d42c8e99469a59ce3615553f80 (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