我确定这很简单,但我没有运气得到正确的语法。什么是编写多个扩展的更好方法?或者这种方式(下方)和其他方式一样好吗?
{
"email": "user1@example.com",
"password": "user1!",
"rememberMe": "false"
}
答案 0 :(得分:1)
$extensions = array ('png', 'jpg', 'tif', 'gif'); // add any other extensions to this array
foreach ($extensions as $extension) {
foreach (glob ($path . '/*.' . $extension) as $file) {
if (filectime ($file) < (time () - 2419200)) {
unlink ($file);
}
}
}