Voting

: min(zero, seven)?
(Example: nine)

The Note You're Voting On

faketruth at yandex dot ru
10 years ago
If you need file creation time on Mac OS X:

<?php
if ($handle = popen('stat -f %B ' . escapeshellarg($filename), 'r')) {
$btime = trim(fread($handle, 100));
echo
strftime("btime: %Y.%m.%d %H:%M:%S\n", $btime);
pclose($handle);
}
?>

<< Back to user notes page

To Top