For God so loved the world, that He gave His only begotten Son, that all who believe in Him should not perish but have everlasting life
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
2.8 KiB

  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (c) 2006 - 2015 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 - 2015 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. ini_set('display_errors', TRUE);
  30. ini_set('display_startup_errors', TRUE);
  31. define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');
  32. date_default_timezone_set('Europe/London');
  33. /** PHPExcel_IOFactory */
  34. require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php';
  35. echo date('H:i:s') , " Load from Excel2007 file" , EOL;
  36. $objReader = PHPExcel_IOFactory::createReader('Excel2007');
  37. $objPHPExcel = $objReader->load("./templates/28iterators.xlsx");
  38. echo date('H:i:s') , " Iterate worksheets by Row" , EOL;
  39. foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) {
  40. echo 'Worksheet - ' , $worksheet->getTitle() , EOL;
  41. foreach ($worksheet->getRowIterator() as $row) {
  42. echo ' Row number - ' , $row->getRowIndex() , EOL;
  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() , EOL;
  48. }
  49. }
  50. }
  51. }
  52. echo date('H:i:s') , " Iterate worksheets by Column" , EOL;
  53. foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) {
  54. echo 'Worksheet - ' , $worksheet->getTitle() , EOL;
  55. foreach ($worksheet->getColumnIterator() as $column) {
  56. echo ' Column index - ' , $column->getColumnIndex() , EOL;
  57. $cellIterator = $column->getCellIterator();
  58. $cellIterator->setIterateOnlyExistingCells(true); // Loop all cells, even if it is not set
  59. foreach ($cellIterator as $cell) {
  60. if (!is_null($cell)) {
  61. echo ' Cell - ' , $cell->getCoordinate() , ' - ' , $cell->getCalculatedValue() , EOL;
  62. }
  63. }
  64. }
  65. }
  66. // Echo memory peak usage
  67. echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL;