mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
13 lines
305 B
PHP
13 lines
305 B
PHP
--TEST--
|
|
SplFileObject::fseek function - parameters test
|
|
--FILE--
|
|
<?php
|
|
$obj = New SplFileObject(__FILE__);
|
|
$obj->fseek(1,2,3);
|
|
$obj->fseek();
|
|
?>
|
|
--EXPECTF--
|
|
Warning: SplFileObject::fseek() expects at most 2 parameters, 3 given %s
|
|
|
|
Warning: SplFileObject::fseek() expects at least 1 parameter, 0 given %s
|