避免 php 重复保存文件

发布于 2024-12-04 15:38:39 字数 242 浏览 0 评论 0原文

为了使文件名唯一,我使用此代码在文件名末尾添加唯一的 id:

if (!file_exists("data/$filename")) {$savingfile=$filename;} else {$savingfile="$filename-2";}

此方法完美工作,但如果“$filename-2”存在,则继续此循环的简单方法是什么,将其保存为“$ savefile-3”等等(查找不存在的文件名)?

For making the file name unique, I use this code to add an unique id at the end of filename:

if (!file_exists("data/$filename")) {$savingfile=$filename;} else {$savingfile="$filename-2";}

This method perfectly works, but what is the simple way to continue this loop if "$filename-2" exists save it as "$savefile-3" and so forth (to find an non-exist file name)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

随梦而飞# 2024-12-11 15:38:39
$savingfile = $filename;
$i = 0;
while(file_exists($savingfile)) {
    $savingfile = $filename . '-' . ++$i;
}
$savingfile = $filename;
$i = 0;
while(file_exists($savingfile)) {
    $savingfile = $filename . '-' . ++$i;
}
︶葆Ⅱㄣ 2024-12-11 15:38:39

您可以尝试使用计数器并计算文件名并检查它是否存在。

另一种方法是将最后一个值保存在某处,当您需要创建另一个文件时,只需增加它,使用它,然后再次保存它。

You can try to use a counter and compute the filename and check if it exists.

Another approach would be to save somewhere the last value and when you need to create another file just increment it, use it and then save it again.

烙印 2024-12-11 15:38:39

就我个人而言,我只使用 tmpnam,这是一个内置的 PHP 函数创建一个具有唯一名称的文件。

Personally, I'd just use tmpnam, which is a built-in PHP function to create a file with a unique name.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文