摘要: // 指定要添加的文件和已有的压缩包名称 $fileToAdd = public_path().'pdffile/file1.txt'; // 要添加的文件 $zipFileName = public_path().'pdfzip/archive.zip'; // 已有的压缩包名称 // 创建一个新 阅读全文
posted @ 2024-08-28 18:26 西瓜霜 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 目前用的是tp6框架 // 指定要压缩的文件和压缩包的名称 $filesToZip = [public_path().'pdffile/生物样本库-原件.pdf']; // 要压缩的文件列表 $zipFileName = public_path().'pdfzip/archive.zip'; // 阅读全文
posted @ 2024-08-28 18:19 西瓜霜 阅读(29) 评论(0) 推荐(0) 编辑
摘要: function num2alpha($number) { $result = ''; while ($number > 0) { $number--; // Adjust for 0-indexing $result = chr($number % 26 + 65) . $result; // C 阅读全文
posted @ 2024-08-28 10:11 西瓜霜 阅读(6) 评论(0) 推荐(0) 编辑