fgetcsv_variation23.phpt 1005 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --TEST--
  2. Test fgetcsv() : usage variations - empty file
  3. --FILE--
  4. <?php
  5. /* Testing fgetcsv() to read from an empty file */
  6. echo "*** Testing fgetcsv() : reading from file which is having zero content ***\n";
  7. // try reading from file which is having zero content
  8. // create the file and then open in read mode and try reading
  9. $filename = __DIR__ . '/fgetcsv_variation23.tmp';
  10. $fp = fopen ($filename, "w");
  11. fclose($fp);
  12. $fp = fopen ($filename, "r");
  13. if (!$fp) {
  14. echo "Error: failed to create file $filename!\n";
  15. exit();
  16. }
  17. var_dump( fgetcsv($fp) );
  18. var_dump( ftell($fp) );
  19. var_dump( fgetcsv($fp, 1024) );
  20. var_dump( ftell($fp) );
  21. var_dump( fgetcsv($fp, 1024, "+" ) );
  22. var_dump( ftell($fp) );
  23. var_dump( fgetcsv($fp, 1024, "+", "%") );
  24. var_dump( ftell($fp) );
  25. // close and delete the file
  26. fclose($fp);
  27. unlink($filename);
  28. echo "Done\n";
  29. ?>
  30. --EXPECT--
  31. *** Testing fgetcsv() : reading from file which is having zero content ***
  32. bool(false)
  33. int(0)
  34. bool(false)
  35. int(0)
  36. bool(false)
  37. int(0)
  38. bool(false)
  39. int(0)
  40. Done