stat_variation2-win32.phpt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. --TEST--
  2. Test stat() functions: usage variations - effects of writing to file
  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 effects of writing to a file on the stats of the file */
  12. $file_path = __DIR__;
  13. require "$file_path/file.inc";
  14. $filename = "$file_path/stat_variation2.tmp";
  15. $file_handle = fopen($filename, "w"); // temp file
  16. fclose($file_handle);
  17. echo "*** Testing stat(): writing to a file ***\n";
  18. // writing to an empty file
  19. echo "-- Testing stat() on file after data is written in it --\n";
  20. $old_stat = stat($filename);
  21. clearstatcache();
  22. sleep(1);
  23. $file_handle = fopen($filename, "w"); // temp file
  24. fwrite($file_handle, "Hello World");
  25. fclose($file_handle);
  26. $new_stat = stat($filename);
  27. // compare self stats
  28. var_dump( compare_self_stat($old_stat) );
  29. var_dump( compare_self_stat($new_stat) );
  30. // compare the stats
  31. $comp_arr = array(7, 'size');
  32. var_dump(compare_stats($old_stat, $new_stat, $comp_arr, "<"));
  33. clearstatcache();
  34. echo "\n*** Done ***";
  35. ?>
  36. --CLEAN--
  37. <?php
  38. $file_path = __DIR__;
  39. unlink("$file_path/stat_variation2.tmp");
  40. ?>
  41. --EXPECT--
  42. *** Testing stat(): writing to a file ***
  43. -- Testing stat() on file after data is written in it --
  44. bool(true)
  45. bool(true)
  46. bool(true)
  47. *** Done ***