1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/spl/tests/SplFileObject/SplFileObject_seek_error_001.phpt
2022-05-27 18:33:48 +01:00

14 lines
282 B
PHP

--TEST--
SplFileObject::seek function - test parameters
--FILE--
<?php
$obj = new SplFileObject(__FILE__);
try {
$obj->seek(-1);
} catch (\ValueError $e) {
echo($e->getMessage());
}
?>
--EXPECT--
SplFileObject::seek(): Argument #1 ($line) must be greater than or equal to 0