| Server IP : 213.186.33.4 / Your IP : 216.73.216.59 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/Dolibarr/htdocs/includes/phpoffice/PhpSpreadsheet/Worksheet/ |
Upload File : |
<?php
namespace PhpOffice\PhpSpreadsheet\Worksheet;
use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException;
abstract class CellIterator implements \Iterator
{
/**
* Worksheet to iterate.
*
* @var Worksheet
*/
protected $worksheet;
/**
* Iterate only existing cells.
*
* @var bool
*/
protected $onlyExistingCells = false;
/**
* Destructor.
*/
public function __destruct()
{
unset($this->worksheet);
}
/**
* Get loop only existing cells.
*
* @return bool
*/
public function getIterateOnlyExistingCells()
{
return $this->onlyExistingCells;
}
/**
* Validate start/end values for "IterateOnlyExistingCells" mode, and adjust if necessary.
*
* @throws PhpSpreadsheetException
*/
abstract protected function adjustForExistingOnlyRange();
/**
* Set the iterator to loop only existing cells.
*
* @param bool $value
*
* @throws PhpSpreadsheetException
*/
public function setIterateOnlyExistingCells($value)
{
$this->onlyExistingCells = (bool) $value;
$this->adjustForExistingOnlyRange();
}
}