我需要从FTP服务器获取文件列表,其中最后修改日期将晚于我的特定日期(从此日期开始修改的文件)。
对于这项任务,哪种方式“更便宜”?使用cURL库进行PHP。
答案 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;
}