Neden PHPExcel Kohana içinde kullanılan Excel dosya adı dışında bir sınıf adı oluşturmak için denemek mi?

0 Cevap php

Ben Kohana PHP çerçevesinde oluşturulmuş bir uygulamanın içine PHPExcel kütüphane oluşturmaya çalışıyorum.

Bir test app outside Kohana framework, ben Excel dosyaları cezası oluşturabilir ve okuyabilirsiniz.

Ve inside Kohana uygulama, creating, bir dosya çalışır:

$objPHPExcel = new PHPExcel();
$objPHPExcel->getProperties()->setCreator("Test Generator")
    ->setTitle("Test Excel5 File");
$objPHPExcel->setActiveSheetIndex(0)->setCellValue('A1', 'Hello');
$objPHPExcel->getActiveSheet()->setTitle('Test Sheet');
$objPHPExcel->setActiveSheetIndex(0);
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
$objWriter->save('test123.xls'); //created in the root directory of application

Ancak, ben bu kod ile read a file deneyin inside Kohana çerçeve:

$objReader = PHPExcel_IOFactory::createReader('test123.xls');

Ben bu olsun error:

alt text

How can I prevent PHPExcel/Kohana from trying to create a class name out of the Excel file name?

0 Cevap