gpt4 book ai didi

php - 是否可以使用 PhpSpreadSheet 在现有电子表格中写入?

转载 作者:行者123 更新时间:2023-12-03 23:09:13 24 4
gpt4 key购买 nike

我目前正在使用 PhpSpreadSheet 库,我想写入现有的电子表格。那可能吗?

如果是,如何?我在 documentation 中没有看到任何可能性.

谢谢!

最佳答案

  • 加载现有的电子表格文件
  • 换个东西
  • 再次将其写入文件系统

  • 代码:
    <?php

    //load spreadsheet
    $spreadsheet = \PhpOffice\PhpSpreadsheet\IOFactory::load("yourspreadsheet.xlsx");

    //change it
    $sheet = $spreadsheet->getActiveSheet();
    $sheet->setCellValue('A1', 'New Value');

    //write it again to Filesystem with the same name (=replace)
    $writer = new Xlsx($spreadsheet);
    $writer->save('yourspreadsheet.xlsx');

    关于php - 是否可以使用 PhpSpreadSheet 在现有电子表格中写入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50609059/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com