php删除指定文件类型代码
php删除指定文件类型代码
php删除指定文件类型代码
- function deleteOldFiles($dir = 'temp/', $age = 36000000)
- {
- if (file_exists($dir) && $handle = opendir($dir)) {
- while (false !== ($file = readdir($handle))) {
- if (file_exists($dir.$file)) {
- if (preg_match("/^.*\.(png|svg|gif|jpeg|jpg|eps)$/i", $file)) {
- $filelastmodified = filemtime($dir.$file);
- $now = time();
- $life = $now - $filelastmodified;
- if ($life > $age) {
- unlink($dir.$file);
- }
- }
- }
- }
- closedir($handle);
- }
- }
热门文章推荐
- [php]优酷真实视频地址解析算法
- [Dz]discuz手机版支持视频播放的方法
- [PHP]php加密js解密的方法实例
- [php]用PHP打印出前一天的时间格式
- [PHP]mpeg,mp3,avi的ffmpeg的php转换类
- [php]php中3DES加密一个非常有用的3des加密
- [PHP]php.ini修改上传文件的大小限制处理方法
- [php]用过的最好用的php分页类源代码
请稍候...