To touch a file without being owner, it is much easier:
<?php
function touchFile($file) {
fclose(fopen($file, 'a'));
}
?>
To touch a file without being owner, it is much easier:
<?php
function touchFile($file) {
fclose(fopen($file, 'a'));
}
?>