Sign in
webkit
/
WebKit
/
8e7a3447df20af9ec2c05f0bf890f531cfa43c41
/
.
/
LayoutTests
/
http
/
tests
/
resources
/
file-last-modified.php
blob: efcf9509a9a32e85688c11475406908b93b6a943 [
file
] [
log
] [
blame
]
<?
php
date_default_timezone_set
(
'UTC'
);
$filePath
=
$_GET
[
'path'
];
if
(
file_exists
(
$filePath
))
{
echo date
(
"U"
,
filemtime
(
$filePath
));
}
?>