<?php
int|false filemtime ( str $filename )
where,
$filename = The path to the file
?>
<?php
$filenm = __DIR__ . '/Your Wildest Dreams.m4a';
// The file must exist in the execution path
// of this script, that is:
echo __DIR__ . '<br><br>';
if (file_exists($filenm))
{
$tmstp = filemtime($filenm);
echo 'TIMESTAMP = ' . $tmstp . '<br><br>';
echo 'DATE = ' . date('F d Y H:i:s', $tmstp) . '<br><br>';
}
clearstatcache();
?>
<?php
$filenm = __FILE__ ;
// Path for this script
echo __FILE__ . '<br><br>';
if (file_exists($filenm))
{
$tmstp = filemtime($filenm);
echo 'TIMESTAMP = ' . $tmstp . '<br><br>';
echo 'DATE = ' . date('F d Y H:i:s', $tmstp) . '<br><br>';
}
clearstatcache();
?>