我正在使用 phpExcel,但找不到任何东西来检查工作表是否存在。我想要完成的是这样的:
if(!$excel->sheetExists(1)){
$excel->createSheet(1);
$sheet = $excel->setSheet(1);
}
// Do some stuff with the sheet
所以。我的问题:如何检查工作表是否存在?
编辑
这行得通吗?
try{
$sheet = $this->excel->setActiveSheetIndex(1);
}catch(Exception $e){
$excel->createSheet(1);
$sheet = $excel->setActiveSheetIndex(1);
}