PHP ftp_mdtm() 函数
实例
获取 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);
?>
// 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);
参数值
参数 | 描述 |
---|---|
ftp_conn | 必需。规定要使用的 FTP 连接(FTP 连接的标识符)。 |
file | 必需。规定要检查的文件。 |
提示和注释
注释: 并非所有 FTP 服务器都支持该函数。
注释: 该函数不适用于检查目录。
技术细节
返回值: | 最后修改时间作为 Unix 时间戳表示成功,-1 表示失败 |
---|---|
PHP 版本: | 4+ |