mirror of
https://github.com/php/php-src.git
synced 2026-03-26 17:22:15 +01:00
14 lines
247 B
PHP
14 lines
247 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
|