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