目录

PHP ftp_mdtm() 函数

❮ PHP FTP 参考

示例

获取 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+

❮ PHP FTP 参考