Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在这里,我想通过使用来备份我的文件夹PHP
PHP
我的文件夹结构如下:
ragu |__Raji |__ Ranjith
如果我要在今天进行备份,则意味着整个文件夹将作为备份文件夹出现,名称为今天的日期
如果Next Day我要进行备份意味着我应该只获取具有changes made on that day......的文件夹
Next Day
changes made on that day
写入备份文件时,请确保文件最后修改时间设置为与原始副本相同。
第二天,您只需遍历所有文件并将备份日期与当前文件进行比较。如果上次修改时间不相等,则表示文件已更改,您需要再次进行备份。
读取最后修改时间的函数在这里:
http://www.php.net/manual/en/function.filectime.php