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

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

        <bdo id='qBCdk'></bdo><ul id='qBCdk'></ul>

    2. layui实现php+ajax上传excel表格功能

      php layui实现ajax上传excel表格到系统中,下面小编为您讲解实现方法: 前端代码: div class="layui-input-inline" div class="layui-upload" button type="button" name="myfile" class="layui-btn" id="myfile"i class="layui-icon"/i上传文件/button /d

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

        <bdo id='bJnVP'></bdo><ul id='bJnVP'></ul>
        <tfoot id='bJnVP'></tfoot>

              • <legend id='bJnVP'><style id='bJnVP'><dir id='bJnVP'><q id='bJnVP'></q></dir></style></legend>
                  <tbody id='bJnVP'></tbody>

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

              • php layui实现ajax上传excel表格到系统中,下面小编为您讲解实现方法:
                前端代码:
                    <div class="layui-input-inline">
                        <div class="layui-upload">
                            <button type="button" name="myfile" class="layui-btn" id="myfile"><i class="layui-icon"></i>上传文件</button>
                        </div>
                    </div>
                
                <script type="text/javascript">
                    layui.use(['form','upload'],function(){
                
                        var form=layui.form;
                        var upload=layui.upload;
                
                        upload.render({ //允许上传的文件后缀
                            elem: '#myfile'
                            ,url: "{:url('import')}"
                            ,accept: 'file' //普通文件
                            ,exts: 'xls|excel|xlsx'
                            ,done: function(res){
                                if(res == true){
                                    layer.msg('开通成功',{icon:6});
                                }else{
                                    layer.msg('解析失败',{icon:5});
                                }
                            }
                        });
                    });
                
                </script>
                
                PHP端代码:
                    public function import()
                    {
                        //接收上传文件
                        $file = $_FILES;
                        if (!$file) {
                            return '缺少file';
                        }
                        $filename = $file['file']['tmp_name'];
                        //调用导入excel方法
                        $data = Base::instance()->importExcel($filename);
                        $result_data = [];
                        foreach ($data as $k => $v){
                            if ($k === 0){
                
                            }else{
                                foreach ($v as $kk => $vv){
                                    $result_data[$k-1][$data[0][$kk]] = $vv;
                                }
                            }
                        }
                    }
                
                base类(php需安装phpexcel扩展):
                class Base extends Service
                {
                
                
                    //excel文件导入
                    public function importExcel($file){
                        include(__DIR__.'/../../../vendor/PHPExcel/Classes/PHPExcel.php');
                        $cacheMethod = \PHPExcel_CachedObjectStorageFactory::cache_to_phpTemp;
                        $cacheSettings = array('memoryCacheSize' => '16MB');
                        \PHPExcel_Settings::setCacheStorageMethod($cacheMethod, $cacheSettings);//文件缓存
                        //当前空间不用\,非当前空间要加\
                        $PHPExcel = new \PHPExcel();//创建一个excel对象
                        $PHPReader = new \PHPExcel_Reader_Excel2007(); //建立reader对象,excel—2007以后格式
                        if (!$PHPReader->canRead($file)) {
                            $PHPReader = new \PHPExcel_Reader_Excel5();//建立reader对象,excel—2007以前格式
                            if (!$PHPReader->canRead($file)) {
                                $msg = '不是excel格式文件';
                                //$this->apiReturn(303,$msg);
                                return '不是excel格式文件';
                            }
                        }
                        $PHPExcel = $PHPReader->load($file); //加载excel对象
                        $sheet = $PHPExcel->getSheet(0); //获取指定的sheet表
                        $rows = $sheet->getHighestRow();//行数
                        $cols = $sheet->getHighestColumn();//列数
                
                        $data = array();
                        for ($i = 1; $i <= $rows; $i++){ //行数是以第1行开始
                            $count = 0;
                            for ($j = 'A'; $j <= $cols; $j++) { //列数是以A列开始
                                $value = $sheet->getCell($j . $i)->getValue();
                                if ($value) {
                                    $data[$i - 1][$count] = (string)$sheet->getCell($j . $i)->getValue();
                                    $count += 1;
                                }
                            }
                        }
                        return $data;
                    }
                
                }
                
                 
                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                $array = array(array('id' = 1, 'pid' = 0, 'name' = '河北省'),array('id' = 2, 'pid' = 0, 'name' = '北京市'),array('id' = 3, 'pid' = 1, 'name' = '邯郸市'),array('id' = 4, 'pid' = 2, 'name' = '朝阳区'),array('id' = 5, 'pid' = 2, 'name' = '通
                虽然php 中的header()函数 下载文件不支持断点续传功能但有时我们还真需要此功能,如我们下载txt,图片文件时如果直接是个连接估计是直接打开了而不是下载了,那么我们可如何实现下载呢。 /*** 文件下载**/header("Content-type:text/html;charset=utf-8");do
                  <tbody id='tkdRL'></tbody>

                      <bdo id='tkdRL'></bdo><ul id='tkdRL'></ul>

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

                        • <small id='tkdRL'></small><noframes id='tkdRL'>

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