file_variation9.phpt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. --TEST--
  2. Test file function : variation - test various endings of a file
  3. --CREDITS--
  4. Dave Kelsey <d_kelsey@uk.ibm.com>
  5. --FILE--
  6. <?php
  7. echo "*** Testing file() : variation ***\n";
  8. $testfile = __DIR__."/fileVar9.txt";
  9. $contents = array(
  10. "File ends on a single character\na",
  11. "File ends on a new line\n",
  12. "File ends on multiple newlines\n\n\n\n",
  13. "File has\n\nmultiple lines and newlines\n\n",
  14. "File has\r\nmultiple crlfs\n\r\n"
  15. );
  16. @unlink($testfile);
  17. foreach ($contents as $content) {
  18. $h = fopen($testfile, "w");
  19. fwrite($h, $content);
  20. fclose($h);
  21. var_dump(file($testfile));
  22. unlink($testfile);
  23. }
  24. echo "\n*** Done ***\n";
  25. ?>
  26. --EXPECT--
  27. *** Testing file() : variation ***
  28. array(2) {
  29. [0]=>
  30. string(32) "File ends on a single character
  31. "
  32. [1]=>
  33. string(1) "a"
  34. }
  35. array(1) {
  36. [0]=>
  37. string(24) "File ends on a new line
  38. "
  39. }
  40. array(4) {
  41. [0]=>
  42. string(31) "File ends on multiple newlines
  43. "
  44. [1]=>
  45. string(1) "
  46. "
  47. [2]=>
  48. string(1) "
  49. "
  50. [3]=>
  51. string(1) "
  52. "
  53. }
  54. array(4) {
  55. [0]=>
  56. string(9) "File has
  57. "
  58. [1]=>
  59. string(1) "
  60. "
  61. [2]=>
  62. string(28) "multiple lines and newlines
  63. "
  64. [3]=>
  65. string(1) "
  66. "
  67. }
  68. array(3) {
  69. [0]=>
  70. string(10) "File has
  71. "
  72. [1]=>
  73. string(15) "multiple crlfs
  74. "
  75. [2]=>
  76. string(2) "
  77. "
  78. }
  79. *** Done ***