You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
258 B

  1. --TEST--
  2. SplFileObject::fscanf function - basic functionality test
  3. --FILE--
  4. <?php
  5. $obj = New SplFileObject(dirname(__FILE__).'/SplFileObject_testinput.csv');
  6. var_dump($obj->fscanf('%s'));
  7. ?>
  8. --EXPECT--
  9. array(1) {
  10. [0]=>
  11. string(18) "first,second,third"
  12. }