summaryrefslogtreecommitdiff
path: root/Zend/tests/bug78396.phpt
blob: f5d8281941c18acbf2ee53bb283cb56f41af65c2 (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