14 lines
314 B
PHP
14 lines
314 B
PHP
--TEST--
|
|
Bug #71882 (Negative ftruncate() on php://memory exhausts memory)
|
|
--FILE--
|
|
<?php
|
|
$fd = fopen("php://memory", "w+");
|
|
try {
|
|
var_dump(ftruncate($fd, -1));
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage() . \PHP_EOL;
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
ftruncate(): Argument #2 ($size) must be greater than or equal to 0
|