How can I use the filemtime function to get the last modified time of a file in PHP? Example code: - Biz Tech

How can I use the filemtime function to get the last modified time of a file in PHP? Example code:

Listen
$file = "/path/to/file.txt";

$last_modified_time = filemtime($file);

echo date("F d Y H:i:s.", $last_modified_time);