我知道这个问题已经被问过很多次了,但就我而言,这只是为了方便在 Netbeans 中编写代码。我一直在使用 PHPExcel 库,因为它有太多的方法,我不可能记住所有的方法。所以我需要netbeans的自动完成功能。问题是,netbeans 只能在一定程度上自动完成。
例如 :-
protected function _read_excel(PHPExcel $excel)
{
$sheet = $excel->getSheet(0); // Works perfectly fine here because I type cast the argument
$rows = $sheet->getRowIterator(); // Works fine here too
foreach($rows as $row)
{
$cols = $row->getCellIterator(); // By the time I reach here, Netbeans stops auto-completing. Probably due to Netbeans don't know what class it is.
}
}
如果我能做到这一点:-
$cols = (PHPExcel_Worksheet_CellIterator) $row->getCellIterator();
我知道 PHP 无法做到这一点,但有解决方法吗?