Phpfilemtime-get the file modification time. Phpfilemtime-get file modification time filemtime (in PHP4, in PHP5) filemtime-get file modification time Description International filemtime (string $ file name) when this function returns php filemtime-get file modification time
Filemtime
(PHP 4 and PHP 5)
Filemtime-get file modification time
Description
International filemtime (string $ file name)
When this function is returned, the data block file is written, which is the content file changed at that time.
Parameters
File name
File path.
Return value
An error occurs when the last modification or FALSE of the object is returned. The returned Time is a Unix timestamp, which is a suitable date () function.
Instance
Example #1 filemtime ()
// Outputs e.g. somefile.txt was last modified: December 29 2002 22:16:23.
$ Filename = 'somefile.txt ';
If (file_exists ($ filename )){
Echo "$ filename was last modified:". date ("F d y h: I: s.", filemtime ($ filename ));
}
?>
Http://www.bkjia.com/PHPjc/445461.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/445461.htmlTechArticlephp filemtime-get file modification time filemtime (PHP 4, PHP 5) filemtime-get file modification time Description International filemtime (string $ file name) when this function returns...