1<?php 2date_default_timezone_set('UTC'); 3$filePath = $_GET['path']; 4if (file_exists($filePath)) { 5 echo date("U", filemtime($filePath)); 6} 7?> 8