摘要: function fileShow($dir){ $handle = opendir($dir); // 打开目录句柄 while ($file = readdir($handle)) { // 返回目录句柄中的条目 if ($file !== '..' && $file !== '.') { $f 阅读全文
posted @ 2021-03-16 13:39 CanyingV 阅读(58) 评论(0) 推荐(0) 编辑
摘要: $phar = new PharData('leixuesong.tar.gz'); //解压后的路径 数组或者字符串指定解压解压的文件,null为全部解压 是否覆盖 $phar->extractTo('./tmp', null, true); 阅读全文
posted @ 2021-03-16 11:13 CanyingV 阅读(171) 评论(0) 推荐(0) 编辑