【PHP】使用 phpspreadsheet 读取excel 修改excel 保存 -Poison

本文使用phpspreadsheet 来操作excel

composer require phpoffice/phpspreadsheet

废话不多说 我需要二次修改总价格

 // 指定导出目录
        $url = 'export/' . date('y') . '/' . date('m') . '/';
        $path = ROOT_PATH . '/public/' . $url;
        $len = 16;//第一次生成 所记录的总价格位置
        $total = 1000;//需要修改的总价格
        $inputfile = 'export/21/12/报价单2112021940091545.Xlsx';//路径
		//读取出数据
        $objread = IOFactory::createreader('Xlsx');
        $objspreadsheet = $objread->load($inputfile);
		//设置
        $objspreadsheet->setActiveSheetIndex(0)->setCellValue('A' . $len, '总价格:' . $total . ' 元');
        //7.设置保存的Excel表格名称
        $filename = '报价单' . date('ymdHis', time()) . rand(1000, 9999);
        //生成excel文件
        $objWriter = IOFactory::createWriter($objspreadsheet, 'Xlsx');
        $objWriter->save($path . $filename . '.Xlsx');

剩下的就是数据库保存路径了
有疑问 加qq群:1055774855

    原文作者:道长张三
    原文地址: https://blog.csdn.net/qq_35318236/article/details/121713287
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞