Tutorial Get File Last Updated Date
/* * @param string $file Filepath * @param string $format dateformat * @link http://www.php.net/manual/de/function.date.php * @link http...

https://iskablogs.blogspot.com/2014/03/tutorial-get-file-last-updated-date.html
/*
* @param string $file Filepath
* @param string $format dateformat
* @link http://www.php.net/manual/de/function.date.php
* @link http://www.php.net/manual/de/function.filemtime.php
* @return string|bool Date or Boolean
*/
function getFiledate($file, $format) {
if (is_file($file)) {
$filePath = $file;
if (!realpath($filePath)) {
* @param string $file Filepath
* @param string $format dateformat
* @link http://www.php.net/manual/de/function.date.php
* @link http://www.php.net/manual/de/function.filemtime.php
* @return string|bool Date or Boolean
*/
function getFiledate($file, $format) {
if (is_file($file)) {
$filePath = $file;
if (!realpath($filePath)) {