stat_variation5-win32.phpt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. --TEST--
  2. Test stat() functions: usage variations - file opened in read/write mode
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) != 'WIN') {
  6. die('skip.. only for Windows');
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. /* test the stats of file opened in write mode and then same in read mode */
  12. $file_path = __DIR__;
  13. require "$file_path/file.inc";
  14. $file_handle = fopen("$file_path/stat_variation5.tmp", "w"); // temp file
  15. fclose($file_handle);
  16. echo "\n*** Testing stat(): on a file with read/write permission ***\n";
  17. $filename = "$file_path/stat_variation5.tmp";
  18. $file_handle = fopen($filename, "w"); // create file
  19. fclose($file_handle);
  20. $old_stat = stat($filename);
  21. // clear the stat
  22. clearstatcache();
  23. sleep(1);
  24. // opening file again in read mode
  25. $file_handle = fopen($filename, "r"); // read file
  26. fclose($file_handle);
  27. $new_stat = stat($filename);
  28. // compare self stats
  29. var_dump( compare_self_stat($old_stat) );
  30. var_dump( compare_self_stat($new_stat) );
  31. // compare the stat
  32. $affected_members = array(10, 'ctime');
  33. var_dump( compare_stats($old_stat, $new_stat, $affected_members, "==") );
  34. // clear the stat
  35. clearstatcache();
  36. echo "\n*** Done ***";
  37. ?>
  38. --CLEAN--
  39. <?php
  40. $file_path = __DIR__;
  41. unlink("$file_path/stat_variation5.tmp");
  42. ?>
  43. --EXPECT--
  44. *** Testing stat(): on a file with read/write permission ***
  45. bool(true)
  46. bool(true)
  47. bool(true)
  48. *** Done ***