我现在正在做一个,excel数据导入,要求是当我们选择了某一个excel文件之后我们旁边的下拉列表框会出现电子表格的工作表供我们使用。
回复讨论(解决方案)
意思是获得这张电子表格有哪些工作表。
$excel = phpexcel_iofactory::load($filename);
$s = $excel->getsheetnames();
print_r($s);
A programmer’s note boke for work and life
我现在正在做一个,excel数据导入,要求是当我们选择了某一个excel文件之后我们旁边的下拉列表框会出现电子表格的工作表供我们使用。
回复讨论(解决方案)
意思是获得这张电子表格有哪些工作表。
$excel = phpexcel_iofactory::load($filename);
$s = $excel->getsheetnames();
print_r($s);