fopen_variation7.phpt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. --TEST--
  2. Test fopen() function : variation: use include path create a file (relative)
  3. --CREDITS--
  4. Dave Kelsey <d_kelsey@uk.ibm.com>
  5. --FILE--
  6. <?php
  7. require_once('fopen_include_path.inc');
  8. $thisTestDir = basename(__FILE__, ".php") . ".dir";
  9. mkdir($thisTestDir);
  10. chdir($thisTestDir);
  11. $newpath = create_include_path();
  12. set_include_path($newpath);
  13. runtest();
  14. $newpath = generate_next_path();
  15. set_include_path($newpath);
  16. runtest();
  17. teardown_include_path();
  18. chdir("..");
  19. rmdir($thisTestDir);
  20. function runtest() {
  21. global $dir1;
  22. $tmpfile = basename(__FILE__, ".php") . ".tmp";
  23. $h = fopen($tmpfile, "w", true);
  24. fwrite($h, "This is the test file");
  25. fclose($h);
  26. $h = @fopen($tmpfile, "r");
  27. if ($h === false) {
  28. echo "Not created in working dir\n";
  29. }
  30. else {
  31. echo "created in working dir\n";
  32. fclose($h);
  33. unlink($tmpfile);
  34. }
  35. $h = @fopen($dir1.'/'.$tmpfile, "r");
  36. if ($h === false) {
  37. echo "Not created in dir1\n";
  38. }
  39. else {
  40. echo "created in dir1\n";
  41. fclose($h);
  42. unlink($dir1.'/'.$tmpfile);
  43. }
  44. }
  45. ?>
  46. --EXPECT--
  47. created in working dir
  48. Not created in dir1
  49. created in working dir
  50. Not created in dir1