mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
13 lines
227 B
PHP
13 lines
227 B
PHP
--TEST--
|
|
SplFileObject::fpassthru function - basic functionality test
|
|
--FILE--
|
|
<?php
|
|
$obj = New SplFileObject(__DIR__.'/SplFileObject_testinput.csv');
|
|
$obj->fpassthru();
|
|
?>
|
|
--EXPECT--
|
|
first,second,third
|
|
1,2,3
|
|
4,5,6
|
|
7,8,9
|
|
0,0,0
|