这是一个例子,我觉得使用我自己的验证器而不是简单地依赖带有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 - 谢谢!)