获取 FTP 服务器上文件的最后修改时间:
<?php
// connect and login to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
$login = ftp_login($ftp_conn, $ftp_username, $ftp_userpass);
$file = "somefile.txt";
// get the last modified time
$lastchanged = ftp_mdtm($ftp_conn, $file);
if ($lastchanged != -1)
{
echo "$file was last modified on : " . date("F d Y H:i:s.",$lastchanged);
}
else
{
echo "Could not get last modified";
}
// close connection
ftp_close($ftp_conn);
?>
ftp_mdtm() 函数返回指定文件最后一次修改的时间。
笔记:并非所有服务器都支持此功能,并且此功能不适用于目录。
ftp_mdtm(
ftp_conn, file);
Parameter | Description |
---|---|
ftp_conn | Required. Specifies the FTP connection to login to |
file | Required. Specifies the file to check |
返回值: | 成功时最后修改时间为 Unix 时间戳,失败时为 -1 |
---|---|
PHP 版本: | 4+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!