/branches/v1.7.5/Tests/28iterator.php

# · PHP · 67 lines · 26 code · 12 blank · 29 comment · 2 complexity · 1a037ebc9490d42a40c63aaa7d5c7940 MD5 · raw file

  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (C) 2006 - 2010 PHPExcel
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * @category PHPExcel
  22. * @package PHPExcel
  23. * @copyright Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
  24. * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
  25. * @version ##VERSION##, ##DATE##
  26. */
  27. /** Error reporting */
  28. error_reporting(E_ALL);
  29. date_default_timezone_set('Europe/London');
  30. /** PHPExcel_IOFactory */
  31. require_once '../Classes/PHPExcel/IOFactory.php';
  32. if (!file_exists("05featuredemo.xlsx")) {
  33. exit("Please run 05featuredemo.php first.\n");
  34. }
  35. echo date('H:i:s') . " Load from Excel2007 file\n";
  36. $objReader = PHPExcel_IOFactory::createReader('Excel2007');
  37. $objPHPExcel = $objReader->load("05featuredemo.xlsx");
  38. echo date('H:i:s') . " Iterate worksheets\n";
  39. foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) {
  40. echo '- ' . $worksheet->getTitle() . "\r\n";
  41. foreach ($worksheet->getRowIterator() as $row) {
  42. echo ' - Row number: ' . $row->getRowIndex() . "\r\n";
  43. $cellIterator = $row->getCellIterator();
  44. $cellIterator->setIterateOnlyExistingCells(false); // Loop all cells, even if it is not set
  45. foreach ($cellIterator as $cell) {
  46. if (!is_null($cell)) {
  47. echo ' - Cell: ' . $cell->getCoordinate() . ' - ' . $cell->getCalculatedValue() . "\r\n";
  48. }
  49. }
  50. }
  51. }
  52. // Echo memory peak usage
  53. echo date('H:i:s') . " Peak memory usage: " . (memory_get_peak_usage(true) / 1024 / 1024) . " MB\r\n";
  54. // Echo done
  55. echo date('H:i:s') . " Done writing files.\r\n";