RosettaCodeData/Task/File-modification-time/PHP/file-modification-time.php
2023-07-01 13:44:08 -04:00

9 lines
207 B
PHP

<?php
$filename = 'input.txt';
$mtime = filemtime($filename); // seconds since the epoch
touch($filename,
time(), // set mtime to current time
fileatime($filename)); // keep atime unchanged
?>