試圖從命名空間「ImportBundle \ Traits」加載類「PHPExcel_Cell」。嘗試從Symfony3中的命名空間加載類「PHPExcel_Cell」
你忘記了另一個命名空間的「使用」語句嗎?
500內部服務器錯誤 - ClassNotFoundException的
我試圖把use PHPExcel\Cell;
但仍不能正常工作。我不知道如何加載該類或holiuggiow以獲取列索引作爲整數。
我使用PHPExcel_Cell::stringFromColumnIndex
的原因是因爲我想使用該方法將列索引獲取爲整數。
非常感謝您的幫助。
private function test($objPHPExcel)
{
foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) {
$columnIndex = $worksheet->getHighestColumn();
// Get error when on this line
echo PHPExcel_Cell::stringFromColumnIndex($columnIndex)
}
}
與正常工作: 回聲\ PHPExcel_Cell :: columnIndexFromString($ worksheet-> getHighestDataColumn()); 非常感謝! – Fiemhong