40

所以我有这个处理 CSV 文件的应用程序。我有一行代码来加载文件。

$myFile = "data/FrontlineSMS_Message_Export_20120721.csv";  //The name of the CSV file
$fh = fopen($myFile, 'r');                             //Open the file

我想找到一种方法,可以在data目录中查看并获取最新文件(它们都有日期标签,因此它们将data$myFile.

我真的找不到和理解 php 目录的文档,所以任何有用的资源也将不胜感激。谢谢你。

4

4 回答 4

68

这是使用 的尝试scandir假设目录中的唯一文件具有时间戳文件名

$files = scandir('data', SCANDIR_SORT_DESCENDING);
$newest_file = $files[0];

我们首先按降序列出目录中的所有文件,然后,该列表中的第一个文件名具有“最大”文件名 - 因此时间戳值最大 - 因此是最新的。

请注意,它scandir是在 PHP 5 中添加的,但其文档页面显示了如何在 PHP 4 中实现该行为。

于 2012-07-22T02:56:00.027 回答
8

对于使用通配符的搜索,您可以使用:

<?php
$path = "/var/www/html/*";

$latest_ctime = 0;
$latest_filename = '';

$files = glob($path);
foreach($files as $file)
{
        if (is_file($file) && filectime($file) > $latest_ctime)
        {
                $latest_ctime = filectime($file);
                $latest_filename = $file;
        }
}
return $latest_filename;
?>
于 2021-01-20T15:07:13.297 回答
0

这是一个例子,我觉得使用我自己的验证器而不是简单地依赖带有scandir () 的时间戳更有信心。

在这种情况下,我想检查我的服务器是否有比客户端版本更新的文件版本。所以我比较文件名中的版本号。

$clientAppVersion = "1.0.5";
$latestVersionFileName = "";

$directory = "../../download/updates/darwin/"
$arrayOfFiles = scandir($directory);
foreach ($arrayOfFiles as $file) {
    if (is_file($directory . $file)) {
        // Your custom code here... For example:
        $serverFileVersion = getVersionNumberFromFileName($file);
        if (isVersionNumberGreater($serverFileVersion, $clientAppVersion)) {
            $latestVersionFileName = $file;
        }
    }
}


// function declarations in my php file (used in the forEach loop)
function getVersionNumberFromFileName($fileName) {
    // extract the version number with regEx replacement
    return preg_replace("/Finance D - Tenue de livres-darwin-(x64|arm64)-|\.zip/", "", $fileName);
}

function removeAllNonDigits($semanticVersionString) {
    // use regex replacement to keep only numeric values in the semantic version string
    return preg_replace("/\D+/", "", $semanticVersionString);
}

function isVersionNumberGreater($serverFileVersion, $clientFileVersion): bool {
    // receives two semantic versions (1.0.4) and compares their numeric value (104)
    // true when server version is greater than client version (105 > 104)
    return removeAllNonDigits($serverFileVersion) > removeAllNonDigits($clientFileVersion);
}

使用这种手动比较而不是时间戳,我可以获得更手术的结果。如果您有类似的要求,我希望这可以给您一些有用的想法。

(PS:我花时间发布,因为我对我找到的与我的特定要求相关的答案不满意。请善待我也不太习惯 StackOverflow - 谢谢!)

于 2021-07-02T22:37:31.430 回答
0

我的解决方案,Max Hofmann 的改进解决方案:

$ret = [];
$dir = Yii::getAlias("@app") . "/web/uploads/problem-letters/{$this->id}"; // set directory in question

if(is_dir($dir)) {
   $ret = array_diff(scandir($dir), array(".", "..")); // get all files in dir as array and remove . and .. from it
}

usort($ret, function ($a, $b) use ($dir) {
    if(filectime($dir . "/" . $a) < filectime($dir . "/" . $b)) {
         return -1;
    } else if(filectime($dir . "/" . $a) == filectime($dir . "/" . $b)) {
         return 0;
    } else {
         return 1;
    }
}); // sort array by file creation time, older first

echo $ret[count($ret)-1]; // filename of last created file
于 2021-06-22T18:09:09.190 回答