PHP バージョン:
コードをコピー コードは次のとおりです:
/**
* 7 日前のログを削除
* @param $logPath
*/
関数del7daysAgoLog($ logPath) {
if(empty($logPath))return;
$handle = opendir($logPath);
while(($file = readdir($handle)); ){
$pos = strpos($file, '.log');
if ($pos !== false && (strtotime("-1 週間") > fileatime($logPath . $file) )) {
unlink($logPath . $file);
}
}
}
コードをコピーします コードは次のとおりです:
#!/bin/sh
function del7daysAgoLog (){
for file in $(ls) $1)
do
if [ "${file##*.}" = "log" ]
then
ctime=$(stat $1/$file -c "%y")
ctimeU=$(date -d "$ctime" %s)
now=$(date %s)
SevenDaysAgo=$(($now - 36000 * $Days))
if [ $ SevenDaysAgo -gt $ctimeU ]
then
$(rm $file)#ここでファイルを削除
fi
else
echo ""
fi
done
}
Days=7
Path="/var/www/***/log"
del7daysAgoLog $Path $Days