readfile_variation2.phpt 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. --TEST--
  2. Test readfile() function: usage variations - links
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) == 'WIN') {
  6. die('skip.. only on Linux');
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. /* Variation 2 : Create file
  12. Create soft/hard link to it
  13. Read link using readfile()
  14. Delete file and its link
  15. */
  16. // include file.inc
  17. require("file.inc");
  18. $file_path = __DIR__;
  19. // temp file used here
  20. $filename = "$file_path/readfile_variation2.tmp";
  21. // create temp file and insert data into it
  22. $fp = fopen($filename, "w");
  23. fill_file($fp, "text_with_new_line", 50);
  24. fclose($fp);
  25. // temp link name used
  26. $linkname = "$file_path/readfile_variation2_link.tmp";
  27. /* Checking readfile() operation on soft link */
  28. echo "*** Testing readfile() on soft link ***\n";
  29. // create soft link to $filename
  30. var_dump( symlink($filename, $linkname) );
  31. // readfile() on soft link
  32. $count = readfile($linkname); // with default args
  33. echo "\n";
  34. var_dump($count);
  35. // delete link
  36. unlink($linkname);
  37. /* Checking readfile() operation on hard link */
  38. echo "\n*** Testing readfile() on hard link ***\n";
  39. // create hard link to $filename
  40. var_dump( link($filename, $linkname) );
  41. // readfile() on hard link
  42. $count = readfile($linkname); // default args
  43. echo "\n";
  44. var_dump($count);
  45. // delete link
  46. unlink($linkname);
  47. echo "Done\n";
  48. ?>
  49. --CLEAN--
  50. <?php
  51. $file_path = __DIR__;
  52. unlink("$file_path/readfile_variation2.tmp");
  53. ?>
  54. --EXPECT--
  55. *** Testing readfile() on soft link ***
  56. bool(true)
  57. line
  58. line of text
  59. line
  60. line of text
  61. line
  62. line of t
  63. int(50)
  64. *** Testing readfile() on hard link ***
  65. bool(true)
  66. line
  67. line of text
  68. line
  69. line of text
  70. line
  71. line of t
  72. int(50)
  73. Done