ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/oladi/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ |
<?php namespace PhpOffice\PhpSpreadsheet\Worksheet; use PhpOffice\PhpSpreadsheet\Spreadsheet; class Iterator implements \Iterator { /** * Spreadsheet to iterate. * * @var Spreadsheet */ private $subject; /** * Current iterator position. * * @var int */ private $position = 0; /** * Create a new worksheet iterator. * * @param Spreadsheet $subject */ public function __construct(Spreadsheet $subject) { // Set subject $this->subject = $subject; } /** * Destructor. */ public function __destruct() { unset($this->subject); } /** * Rewind iterator. */ public function rewind() { $this->position = 0; } /** * Current Worksheet. * * @return Worksheet */ public function current() { return $this->subject->getSheet($this->position); } /** * Current key. * * @return int */ public function key() { return $this->position; } /** * Next value. */ public function next() { ++$this->position; } /** * Are there more Worksheet instances available? * * @return bool */ public function valid() { return $this->position < $this->subject->getSheetCount() && $this->position >= 0; } }