PHP 8.3.22 Released!

Voting

: nine plus zero?
(Example: nine)

The Note You're Voting On

ernst at cron-it dot de
15 years ago
To touch a file without being owner, it is much easier:

<?php
function touchFile($file) {
fclose(fopen($file, 'a'));
}
?>

<< Back to user notes page

To Top