首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    tar 压缩中的易错项

    其原因是tar默认为相对路径,使用绝对路径的话就回报这个错,可以使用-P参数(注意大写)解决这个问题 [root@localhost test]# tar zcvf services_(date +%F-%H).tar.gz /etc/services tar: Removing leading `/’ from member names /etc/services //上边之所以会报这个错误是因为tar 默认压缩的文件为当前目录下的文件也就是相对路径,而不能用绝对路径 正确的方法: [root@localhost test]# tar zcvfP services_(date +%F-%H).tar.gz /etc/services tar: Removing leading `/’ from member names /etc/services //上边之所以会报这个错误是因为tar 默认压缩的文件为当前目录下的文件也就是相对路径,而不能用绝对路径 正确的方法: [root@localhost test]# tar zcvfP services_(date +%F-%H).tar.gz /etc/services tar: Removing leading `/’ from member names /etc/services //上边之所以会报这个错误是因为tar 默认压缩的文件为当前目录下的文件也就是相对路径,而不能用绝对路径 正确的方法: [root@localhost test]# tar zcvfP services_(date +%F-%H).tar.gz /etc/services 解释:加上P的原因是因为可以压缩绝对路径。

    02

    PHP打包资源为zip

    1、 开启自带的ZipArchive类,实现压缩解压功能 安装 php_zip 扩展 参考文档https://www.jianshu.com/p/7d032dc34219 2、 接入代码如下 /*********压缩文件为zip包*** * 判断zip扩展是否安装生效,能查询到zip扩展则可以使用ZipArchive,但注意要加上\ ****/ public function ys_to_zip(){ //echo phpinfo();die; // 压缩多个文件 fileList =[ROOT_PATH.”public/uploads/xcx/20220115/1.png”,ROOT_PATH.”public/uploads/xcx/20220115/2.jpg”];filename =ROOT_PATH.”public/uploads/xcx/20220115/6666.zip”; zip = new \ZipArchive();zip->open(filename,\ZipArchive::CREATE); //打开压缩包 foreach(fileList as file){ file=str_replace(“\\”,”/”,file);//统一替换为斜杠,兼容windows和linux。—路径必须统一,否则会导致资源包打包失败 zip->addFile(

    03
    领券