summaryrefslogtreecommitdiff
path: root/Zend/tests/bug78396.phpt
blob: 1f08a47dc41b93769440bea4568a0fd023e84530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
Bug #78396: Second file_put_contents in Shutdown hangs script
--FILE--
<?php
 
register_shutdown_function(function () {
    file_put_contents(__DIR__ . '/bug78396.txt', '1', FILE_APPEND | LOCK_EX);
    file_put_contents(__DIR__ . '/bug78396.txt', '2', FILE_APPEND | LOCK_EX);
    echo "Done\n";
});

?>
--CLEAN--
<?php
unlink(__DIR__ . '/bug78396.txt');
?>
--EXPECT--
Done