PHPexcel 获取Excel所有工作表的名称。文章源自陈学虎-https://chenxuehu.com/article/2017/03/6150.html
文章源自陈学虎-https://chenxuehu.com/article/2017/03/6150.html
- $filename = './file/testcase.xlsx';
- $fileType=PHPExcel_IOFactory::identify($filename);//自动获取文件的类型
- $objReader=PHPExcel_IOFactory::createReader($fileType);//获取文件读取操作对象
- $objPHPExcel=$objReader->load($filename);//加载文件
- $str = "array(";//组合数组字符串
- foreach($objPHPExcel->getSheetNames() as $v){//循环获取到的工作表名称
- $str .= "\"".$v."\",";//组合数组字符串
- }
- echo substr($str,0,-1).")";//输出数组字符串
文章源自陈学虎-https://chenxuehu.com/article/2017/03/6150.html
文章源自陈学虎-https://chenxuehu.com/article/2017/03/6150.html
文章源自陈学虎-https://chenxuehu.com/article/2017/03/6150.html
文章源自陈学虎-https://chenxuehu.com/article/2017/03/6150.html
文章源自陈学虎-https://chenxuehu.com/article/2017/03/6150.html 文章源自陈学虎-https://chenxuehu.com/article/2017/03/6150.html
评论