ShellExecuteEx failed Linux deleted 7 days ago Log Code Php+shell

Source: Internet
Author: User
PHP Version:

Copy the Code code as follows:


/**
* Delete logs from 7 days ago
* @param $logPath
*/
function Del7daysagolog ($logPath) {
if (empty ($logPath)) return;
$handle = Opendir ($logPath);
while (($file = Readdir ($handle))!== false) {
$pos = Strpos ($file, '. log ');
if ($pos!== false && (Strtotime ("1 week") > Fileatime ($logPath. $file)) {
Unlink ($logPath. $file);
}
}
}


Shell version

Copy the Code code as follows:


#!/bin/sh
function Del7daysagolog () {
For file in $ (LS $)
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


Shell version comparison trouble key I'm not familiar with Linux conversion

The above describes the ShellExecuteEx failed Linux deleted 7 days ago The log code Php+shell, including the content of the ShellExecuteEx failure, I hope that the PHP tutorial interested friends to help.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.