summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/fgets_error.phpt
blob: fefbd723bc581451b4f4b409a996b690ea02dfc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
--TEST--
Test fgets() function : error conditions
--FILE--
<?php
echo "*** Testing error conditions ***\n";

$fp = fopen(__FILE__, "r");

// invalid length argument
echo "-- Testing fgets() with invalid length arguments --\n";
$len = 0;
try {
    var_dump( fgets($fp, $len) );
} catch (\ValueError $e) {
    echo $e->getMessage() . \PHP_EOL;
}

$len = -10;
try {
    var_dump( fgets($fp, $len) );
} catch (\ValueError $e) {
    echo $e->getMessage() . \PHP_EOL;
}
$len = 1;
var_dump( fgets($fp, $len) ); // return length - 1 always, expect false

?>
--EXPECT--
*** Testing error conditions ***
-- Testing fgets() with invalid length arguments --
fgets(): Argument #2 ($length) must be greater than 0
fgets(): Argument #2 ($length) must be greater than 0
bool(false)