004-mb.phpt 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. --TEST--
  2. gzfile() with various invalid params
  3. --EXTENSIONS--
  4. zlib
  5. --FILE--
  6. <?php
  7. var_dump(gzfile("nonexistent_file_gzfile",1));
  8. var_dump(gzfile(__DIR__."/004私はガラスを食べられます.txt.gz"));
  9. var_dump(gzfile(__DIR__."/004私はガラスを食べられます.txt.gz", 1));
  10. echo "Done\n";
  11. ?>
  12. --EXPECTF--
  13. Warning: gzfile(nonexistent_file_gzfile): Failed to open stream: No such file or directory in %s on line %d
  14. bool(false)
  15. array(6) {
  16. [0]=>
  17. string(36) "When you're taught through feelings
  18. "
  19. [1]=>
  20. string(26) "Destiny flying high above
  21. "
  22. [2]=>
  23. string(38) "all I know is that you can realize it
  24. "
  25. [3]=>
  26. string(18) "Destiny who cares
  27. "
  28. [4]=>
  29. string(19) "as it turns around
  30. "
  31. [5]=>
  32. string(39) "and I know that it descends down on me
  33. "
  34. }
  35. array(6) {
  36. [0]=>
  37. string(36) "When you're taught through feelings
  38. "
  39. [1]=>
  40. string(26) "Destiny flying high above
  41. "
  42. [2]=>
  43. string(38) "all I know is that you can realize it
  44. "
  45. [3]=>
  46. string(18) "Destiny who cares
  47. "
  48. [4]=>
  49. string(19) "as it turns around
  50. "
  51. [5]=>
  52. string(39) "and I know that it descends down on me
  53. "
  54. }
  55. Done