<small id='tOcDV'></small><noframes id='tOcDV'>

  • <tfoot id='tOcDV'></tfoot>

        <bdo id='tOcDV'></bdo><ul id='tOcDV'></ul>
    1. <legend id='tOcDV'><style id='tOcDV'><dir id='tOcDV'><q id='tOcDV'></q></dir></style></legend>

        <i id='tOcDV'><tr id='tOcDV'><dt id='tOcDV'><q id='tOcDV'><span id='tOcDV'><b id='tOcDV'><form id='tOcDV'><ins id='tOcDV'></ins><ul id='tOcDV'></ul><sub id='tOcDV'></sub></form><legend id='tOcDV'></legend><bdo id='tOcDV'><pre id='tOcDV'><center id='tOcDV'></center></pre></bdo></b><th id='tOcDV'></th></span></q></dt></tr></i><div id='tOcDV'><tfoot id='tOcDV'></tfoot><dl id='tOcDV'><fieldset id='tOcDV'></fieldset></dl></div>

        如何在 laravel 中安装 PHPExcel 库?

        时间:2023-10-31
        <tfoot id='G5wXB'></tfoot>
        • <bdo id='G5wXB'></bdo><ul id='G5wXB'></ul>

              <tbody id='G5wXB'></tbody>

              <legend id='G5wXB'><style id='G5wXB'><dir id='G5wXB'><q id='G5wXB'></q></dir></style></legend>

                <small id='G5wXB'></small><noframes id='G5wXB'>

              • <i id='G5wXB'><tr id='G5wXB'><dt id='G5wXB'><q id='G5wXB'><span id='G5wXB'><b id='G5wXB'><form id='G5wXB'><ins id='G5wXB'></ins><ul id='G5wXB'></ul><sub id='G5wXB'></sub></form><legend id='G5wXB'></legend><bdo id='G5wXB'><pre id='G5wXB'><center id='G5wXB'></center></pre></bdo></b><th id='G5wXB'></th></span></q></dt></tr></i><div id='G5wXB'><tfoot id='G5wXB'></tfoot><dl id='G5wXB'><fieldset id='G5wXB'></fieldset></dl></div>
                1. 本文介绍了如何在 laravel 中安装 PHPExcel 库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试使用这个库来创建 excel 文件,但不是如何安装它.我正在考虑从其主页下载该库 (http://phpexcel.codeplex.com/wikipage?title=Examples) 但也不知道应该放在哪个文件夹.如何安装?

                  I'm trying to use this library to create excel files but not how to install it. I was considering to download the library from its home page (http://phpexcel.codeplex.com/wikipage?title=Examples) but also do not know what folder should I place it. How I can install?

                  推荐答案

                  你应该使用 composer:"phpexcel/phpexcel": "dev-master" 添加到你的composer.json

                  "require": {
                      "phpexcel/phpexcel": "dev-master"
                  }
                  

                  然后执行composer update.所以你可以正常使用它:

                  Then execute composer update. So you can use it as normal:

                  public function import($path){
                  
                      $objPHPExcel = PHPExcel_IOFactory::load($path);
                      $objWorksheet = $objPHPExcel->getActiveSheet();
                      $highestRow = $objWorksheet->getHighestRow();
                      for ($row = 1; $row <= $highestRow; ++$row) {
                           var_dump($objWorksheet->getCellByColumnAndRow(1, $row));
                      }
                  
                  }
                  

                  这篇关于如何在 laravel 中安装 PHPExcel 库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:未找到 Laravel 4 迁移基表 下一篇:如何在 Laravel 中编辑和保存自定义配置文件?

                  相关文章

                  <tfoot id='0NDGn'></tfoot>
                    <i id='0NDGn'><tr id='0NDGn'><dt id='0NDGn'><q id='0NDGn'><span id='0NDGn'><b id='0NDGn'><form id='0NDGn'><ins id='0NDGn'></ins><ul id='0NDGn'></ul><sub id='0NDGn'></sub></form><legend id='0NDGn'></legend><bdo id='0NDGn'><pre id='0NDGn'><center id='0NDGn'></center></pre></bdo></b><th id='0NDGn'></th></span></q></dt></tr></i><div id='0NDGn'><tfoot id='0NDGn'></tfoot><dl id='0NDGn'><fieldset id='0NDGn'></fieldset></dl></div>
                    <legend id='0NDGn'><style id='0NDGn'><dir id='0NDGn'><q id='0NDGn'></q></dir></style></legend>
                        <bdo id='0NDGn'></bdo><ul id='0NDGn'></ul>

                      <small id='0NDGn'></small><noframes id='0NDGn'>