file_variation7.phpt 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. --TEST--
  2. file() on a file with blank lines
  3. --FILE--
  4. <?php
  5. $filepath = __FILE__ . ".tmp";
  6. $fd = fopen($filepath, "w+");
  7. fwrite($fd, "Line 1\n\n \n \n\Line 3");
  8. fclose($fd);
  9. echo "file():\n";
  10. var_dump(file($filepath));
  11. echo "\nfile() with FILE_IGNORE_NEW_LINES:\n";
  12. var_dump(file($filepath, FILE_IGNORE_NEW_LINES));
  13. echo "\nfile() with FILE_SKIP_EMPTY_LINES:\n";
  14. var_dump(file($filepath, FILE_SKIP_EMPTY_LINES));
  15. echo "\nfile() with FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES:\n";
  16. var_dump(file($filepath, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES));
  17. unlink($filepath);
  18. ?>
  19. --EXPECT--
  20. file():
  21. array(5) {
  22. [0]=>
  23. string(7) "Line 1
  24. "
  25. [1]=>
  26. string(1) "
  27. "
  28. [2]=>
  29. string(2) "
  30. "
  31. [3]=>
  32. string(3) "
  33. "
  34. [4]=>
  35. string(7) "\Line 3"
  36. }
  37. file() with FILE_IGNORE_NEW_LINES:
  38. array(5) {
  39. [0]=>
  40. string(6) "Line 1"
  41. [1]=>
  42. string(0) ""
  43. [2]=>
  44. string(1) " "
  45. [3]=>
  46. string(2) " "
  47. [4]=>
  48. string(7) "\Line 3"
  49. }
  50. file() with FILE_SKIP_EMPTY_LINES:
  51. array(5) {
  52. [0]=>
  53. string(7) "Line 1
  54. "
  55. [1]=>
  56. string(1) "
  57. "
  58. [2]=>
  59. string(2) "
  60. "
  61. [3]=>
  62. string(3) "
  63. "
  64. [4]=>
  65. string(7) "\Line 3"
  66. }
  67. file() with FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES:
  68. array(4) {
  69. [0]=>
  70. string(6) "Line 1"
  71. [1]=>
  72. string(1) " "
  73. [2]=>
  74. string(2) " "
  75. [3]=>
  76. string(7) "\Line 3"
  77. }