Aucune description

exampleReader03.php 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. error_reporting(E_ALL);
  3. set_time_limit(0);
  4. date_default_timezone_set('Europe/London');
  5. ?>
  6. <html>
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  9. <title>PHPExcel Reader Example #03</title>
  10. </head>
  11. <body>
  12. <h1>PHPExcel Reader Example #03</h1>
  13. <h2>Simple File Reader using the PHPExcel_IOFactory to Return a Reader</h2>
  14. <?php
  15. /** Include path **/
  16. set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/');
  17. /** PHPExcel_IOFactory */
  18. include 'PHPExcel/IOFactory.php';
  19. $inputFileType = 'Excel5';
  20. // $inputFileType = 'Excel2007';
  21. // $inputFileType = 'Excel2003XML';
  22. // $inputFileType = 'OOCalc';
  23. // $inputFileType = 'SYLK';
  24. // $inputFileType = 'Gnumeric';
  25. // $inputFileType = 'CSV';
  26. $inputFileName = './sampleData/example1.xls';
  27. echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />';
  28. $objReader = PHPExcel_IOFactory::createReader($inputFileType);
  29. $objPHPExcel = $objReader->load($inputFileName);
  30. echo '<hr />';
  31. $sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true);
  32. var_dump($sheetData);
  33. ?>
  34. <body>
  35. </html>