1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/ext/spl/tests/SplFileObject_seek_error_001.phpt
2019-03-11 11:32:20 +01:00

14 lines
241 B
PHP

--TEST--
SplFileObject::seek function - test parameters
--FILE--
<?php
$obj = new SplFileObject(__FILE__);
try {
$obj->seek(-1);
} catch (LogicException $e) {
echo($e->getMessage());
}
?>
--EXPECTF--
Can't seek file %s to negative line -1