php8.5
Home/ Manual/ spl / splfileinfo/ SplFileInfo::getMTime

SplFileInfo::getMTime

PHP function Edit on GitHub ✎

(PHP 5 >= 5.1.2, PHP 7, PHP 8)

Gets the last modified time

Description

SplFileInfo::getMTime(): int|false

Returns the time when the contents of the file were changed. The time returned is a Unix timestamp.

Parameters Parameters

Return Values

Returns the last modified time for the file, in a Unix timestamp on success, or false on failure.

Examples

SplFileInfo::getMTime example

php
<?php
$info = new SplFileInfo('example.jpg');
echo 'Last modified at ' . date('g:i a', $info->getMTime());
?>

The above example will output something similar to:

output
Last modified at 1:49 pm

See Also

Source: reference/spl/splfileinfo/getmtime.xml · from the official PHP manual (php/doc-en)