欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

phpExcel初步使用 excel下拉菜单怎么做 excel2013官方下载 excel2007

程序员文章站 2022-06-05 13:20:59
...
开始php有一段时间了,把最近我用到的一些技术给总结一下,方便以后可以直接用:
    header("Content-type: text/html; charset=utf-8");  
    require_once'phpexcel.php';  
    require_once'PHPExcel\IOFactory.php';  
    require_once'PHPExcel\Reader\Excel2007.php';  
    $uploadfile='data.xlsx';  

    $objReader = PHPExcel_IOFactory::createReader('Excel2007');/*Excel5 for 2003 excel2007 for 2007*/$objPHPExcel = $objReader->load($uploadfile); //Excel 路径  $sheet = $objPHPExcel->getSheet(0);  
    $highestRow = $sheet->getHighestRow(); // 取得总行数  $highestColumn = $sheet->getHighestColumn(); // 取得总列数  /*方法一*/$strs=array();  
    for ($j=1;$j$highestRow;$j++){//从第一行开始读取数据  /*注销上一行读取数据*/unset($str);  
        unset($strs);  
        for($k='A';$k$highestColumn
相关标签: excel