readfile_variation3.phpt 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. --TEST--
  2. Test readfile() function: usage variation - include path
  3. --FILE--
  4. <?php
  5. /* test readfile() by providing an include path, second argument */
  6. // include file.inc
  7. require("file.inc");
  8. $file_path = __DIR__;
  9. $dirname = "$file_path/readfile_variation3";
  10. echo "*** Testing readfile(): checking second argument, include path ***\n";
  11. // temp dir created
  12. mkdir($dirname);
  13. // temp file name used here
  14. $filename = "$dirname/readfile_variation3.tmp";
  15. // create file
  16. $fp = fopen($filename, "w");
  17. fill_file($fp, "text_with_new_line", 50);
  18. fclose($fp);
  19. // including $dirname in 'include_path'
  20. ini_set('include_path',$dirname);
  21. // 'include_path' set to true
  22. $count = readfile("readfile_variation3.tmp", true);
  23. echo "\n";
  24. var_dump($count);
  25. // use the context argument with include path
  26. echo "*** Testing readfile(): checking second argument, include path with context specified ***\n";
  27. $context = stream_context_create();
  28. $count = readfile("readfile_variation3.tmp", true, $context);
  29. echo "\n";
  30. var_dump($count);
  31. echo "Done\n";
  32. ?>
  33. --CLEAN--
  34. <?php
  35. unlink(__DIR__."/readfile_variation3/readfile_variation3.tmp");
  36. rmdir(__DIR__."/readfile_variation3");
  37. ?>
  38. --EXPECT--
  39. *** Testing readfile(): checking second argument, include path ***
  40. line
  41. line of text
  42. line
  43. line of text
  44. line
  45. line of t
  46. int(50)
  47. *** Testing readfile(): checking second argument, include path with context specified ***
  48. line
  49. line of text
  50. line
  51. line of text
  52. line
  53. line of t
  54. int(50)
  55. Done