summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/bug71287.phpt
blob: f88414f2c28877be250316c1067dfe91e9f325d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Bug #71287 (Error message contains hexadecimal instead of decimal number)
--FILE--
<?php
class Stream {
    public function stream_open($path, $mode, $options, $opened_path) {
        return true;
    }

    public function stream_write($data) {
        return strlen($data) - 2;
    }
}

stream_wrapper_register('test', Stream::class);
file_put_contents('test://file.txt', 'foobarbaz');
?>
--EXPECTF--
Warning: file_put_contents(): Only 7 of 9 bytes written, possibly out of free disk space in %sbug71287.php on line %d