Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / resources / file-last-modified.php
blobefcf9509a9a32e85688c11475406908b93b6a943
1 <?php
2 date_default_timezone_set('UTC');
3 $filePath = $_GET['path'];
4 if (file_exists($filePath)) {
5 echo date("U", filemtime($filePath));
7 ?>