doushi1996 2016-05-07 22:34
浏览 59

将值发送/发送到Excel文件中的单元格并从特定单元格中提取结果?

I have a Excel file stored on my webserver which i use as a calculator. I was wondering if it's any way possible to post/send values to specific cells and then extract the result from a specific cell? I would prefer to do this by PHP.

  • 写回答

1条回答 默认 最新

  • duandie0921 2016-05-07 23:04
    关注

    Use phpExcel, here's an example to open and modify your existing file:

    <?php
    error_reporting(E_ALL);
    set_time_limit(0);
    
    date_default_timezone_set('Europe/Lisbon');
    set_include_path(get_include_path() . PATH_SEPARATOR . './Classes/');
    
    include 'PHPExcel/IOFactory.php';
    
    $fileType = 'Excel5'; //you may have to change this value
    $fileName = 'yourfile.xlsm';
    
    // Read the file
    $objReader = PHPExcel_IOFactory::createReader($fileType);
    $objPHPExcel = $objReader->load($fileName);
    
    // Change the file
    $objPHPExcel->setActiveSheetIndex(0)
                ->setCellValue('A1', 'Hello')
                ->setCellValue('B1', 'World!');
    
    // Write the file
    $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, $fileType);
    $objWriter->save($fileName);
    

    Please refer to the official documentation and list of examples.

    评论

报告相同问题?

悬赏问题

  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化