PHP ftp_mdtm() 函數(shù)
PHP ftp_mdtm() 函數(shù)

定義和用法
ftp_mdtm() 函數(shù)返回指定文件的最后修改時(shí)間。
該函數(shù)將以 Unix 時(shí)間戳的形式返回文件的最后修改時(shí)間,如果出錯(cuò)則返回 -1。
語法
int ftp_mdtm ( resource $ftp_stream , string $remote_file )
參數(shù) | 描述 |
---|---|
ftp_connection | 必需。規(guī)定要登錄的 FTP 連接。 |
file | 必需。規(guī)定要檢查的文件。 |
提示和注釋
注釋:并非所有 FTP 服務(wù)器都支持該函數(shù)。
實(shí)例
<?php $file = 'somefile.txt'; // 連接到服務(wù)器 $conn_id = ftp_connect($ftp_server); $login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass); // 獲取最好修改時(shí)間 $buff = ftp_mdtm($conn_id, $file); // 如果成功返回一個(gè) UNIX 時(shí)間戳,否則返回 -1。 if ($buff != -1) { // 輸出 somefile.txt 最后的修改時(shí)間 echo "$file 最好修改時(shí)間為 : " . date ("F d Y H:i:s.", $buff); } else { echo "無法獲取文件的修改時(shí)間"; } // 關(guān)閉連接 ftp_close($conn_id); ?>

相關(guān)文章
- PHP 類型比較
- PHP 超級(jí)全局變量
- PHP While 循環(huán)
- PHP date() 函數(shù)
- PHP 包含文件 include 和 require 語句
- PHP Cookie
- PHP array_intersect_ukey() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP end() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP 5 Directory 函數(shù)
- PHP Mail 函數(shù)