摘要: 1 /** 2 * 统计文件数和文件大小 3 */ 4 private function getFileCacheCount($pathName) 5 { 6 $data = [ 7 'num' => 0, 8 'size' => 0 9 ]; 10 if (file_exists($pathName)) { 11 ... 阅读全文
posted @ 2018-01-27 19:44 py卡卡 阅读(471) 评论(0) 推荐(0) 编辑