如何从特定日期(命令或cURL php)获取FTP服务器中的文件列表

时间:2014-01-29 18:27:09

标签: php curl ftp ls

我需要从FTP服务器获取文件列表,其中最后修改日期将晚于我的特定日期(从此日期开始修改的文件)。

对于这项任务,哪种方式“更便宜”?使用cURL库进行PHP。

1 个答案:

答案 0 :(得分:1)

我的版本:

function since_date ($date, $folder = '')
{
    $files = [];
    $curl = curl_init();

    curl_setopt_array($curl, [
        CURLOPT_URL            => $folder . '/',
        CURLOPT_USERPWD        => 'user:password',
        CURLOPT_RETURNTRANSFER => 1,
        CURLOPT_CUSTOMREQUEST  => 'LIST -t'
    ]);

    // Convert date to timestamp
    $limit = strtotime($date);

    // Get files list sorted by last-modification date
    if ($ls = curl_exec($curl)) {
        foreach (explode("\n", trim($ls, "\n")) as $line) {
            // Parse response line to array of values
            $line = preg_split('/\s+/', $line, 9);

            // Get each file timestamp and compare it with specified date
            if ($ts = strtotime(implode(' ', array_slice($line, -4, 3))) >= $limit) {
                $files[ end($line) ] = $ts;
            } else {
                // Got an older files...
                break;
            }
        }
    }

    curl_close($curl);
    return $files;
}