touch.phpt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. --TEST--
  2. touch() tests
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) == 'WIN') {
  6. die('skip.. only for Non Windows.');
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. // This doesn't work for windows, time, atime usage results in very different
  12. // output to linux. This could be a php.net bug on windows or a windows querk.
  13. $filename = __DIR__."/touch.dat";
  14. var_dump(touch($filename));
  15. var_dump(filemtime($filename));
  16. @unlink($filename);
  17. var_dump(touch($filename, 101));
  18. var_dump(filemtime($filename));
  19. @unlink($filename);
  20. var_dump(touch($filename, -1));
  21. var_dump(filemtime($filename));
  22. @unlink($filename);
  23. var_dump(touch($filename, 100, 100));
  24. var_dump(filemtime($filename));
  25. @unlink($filename);
  26. var_dump(touch($filename, 100, -100));
  27. var_dump(filemtime($filename));
  28. var_dump(touch("/no/such/file/or/directory"));
  29. @unlink($filename);
  30. try {
  31. touch("/no/such/file/or/directory", null, 1599492068);
  32. } catch (ValueError $exception) {
  33. echo $exception->getMessage() . "\n";
  34. }
  35. echo "Done\n";
  36. ?>
  37. --EXPECTF--
  38. bool(true)
  39. int(%d)
  40. bool(true)
  41. int(101)
  42. bool(true)
  43. int(%i)
  44. bool(true)
  45. int(100)
  46. bool(true)
  47. int(100)
  48. Warning: touch(): Unable to create file /no/such/file/or/directory because %s in %s on line %d
  49. bool(false)
  50. touch(): Argument #2 ($mtime) cannot be null when argument #3 ($atime) is an integer
  51. Done