Source for file Cell.php
Documentation is available at Cell.php
* Copyright (c) 2006 - 2010 PHPExcel
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* @copyright Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
* @version 1.7.3c, 2010-06-01
* @copyright Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
* @var PHPExcel_Cell_IValueBinder
private static $_valueBinder = null;
* Calculated value of the cell (used for caching)
private $_calculatedValue = null;
* @var PHPExcel_Worksheet
* Send notification to the cache controller
$this->_parent->getCellCacheController()->updateCacheData($this);
public function attach($parent) {
$this->_parent = $parent;
* @param string $pDataType
* @param PHPExcel_Worksheet $pSheet
public function __construct($pColumn = 'A', $pRow = 1, $pValue = null, $pDataType = null, PHPExcel_Worksheet $pSheet = null)
// Initialise cell coordinate
$this->_parent = $pSheet;
$this->_dataType = $pDataType;
if (!self::getValueBinder()->bindValue($this, $pValue)) {
throw new Exception("Value could not be bound to cell.");
// set default index to cellXf
* Get cell coordinate column
* Get cell coordinate row
return $this->_column . $this->_row;
* This clears the cell formula.
* @param mixed $pValue Value
public function setValue($pValue = null)
if (!self::getValueBinder()->bindValue($this, $pValue)) {
throw new Exception("Value could not be bound to cell.");
* Set cell value (with explicit data type given)
* @param mixed $pValue Value
* @param string $pDataType Explicit data type
public function setValueExplicit($pValue = null, $pDataType = PHPExcel_Cell_DataType::TYPE_STRING)
// set the value according to data type
$this->_value = (float) $pValue;
$this->_value = (string) $pValue;
$this->_value = (bool) $pValue;
throw new Exception('Invalid datatype: ' . $pDataType);
$this->_dataType = $pDataType;
* Get calculated cell value
// echo 'Cell '.$this->getCoordinate().' value is a '.$this->_dataType.' with a value of '.$this->getValue().'<br />';
// echo 'Cell value for '.$this->getCoordinate().' is a formula: Calculating value<br />';
// echo $this->getCoordinate().' calculation result is '.$result.'<br />';
} catch ( Exception $ex ) {
// echo 'Calculation Exception: '.$ex->getMessage().'<br />';
throw (new Exception($ex->getMessage()));
if ((is_string($result)) && ($result == '#Not Yet Implemented')) {
// echo 'Returning fallback value of '.$this->_calculatedValue.' for cell '.$this->getCoordinate().'<br />';
return $this->_calculatedValue; // Fallback if calculation engine does not support the formula.
// echo 'Returning calculated value of '.$result.' for cell '.$this->getCoordinate().'<br />';
// echo 'Cell '.$this->getCoordinate().' has no value, formula or otherwise<br />';
// echo 'Cell value for '.$this->getCoordinate().' is not a formula: Returning data value of '.$this->_value.'<br />';
// echo 'Cell value is a formula: Calculating value<br />';
* Set calculated value (used for caching)
* @param mixed $pValue Value
$this->_calculatedValue = $pValue;
* Get old calculated value (cached)
return $this->_calculatedValue;
* @param string $pDataType
public function setDataType($pDataType = PHPExcel_Cell_DataType::TYPE_STRING)
$this->_dataType = $pDataType;
if (!isset ($this->_parent)) {
throw new Exception('Cannot check for data validation when cell is not bound to a worksheet');
return $this->_parent->dataValidationExists($this->getCoordinate());
* @return PHPExcel_Cell_DataValidation
if (!isset ($this->_parent)) {
throw new Exception('Cannot get data validation for cell that is not bound to a worksheet');
$dataValidation = $this->_parent->getDataValidation($this->getCoordinate());
* @param PHPExcel_Cell_DataValidation $pDataValidation
public function setDataValidation(PHPExcel_Cell_DataValidation $pDataValidation = null)
if (!isset ($this->_parent)) {
throw new Exception('Cannot set data validation for cell that is not bound to a worksheet');
$this->_parent->setDataValidation($this->getCoordinate(), $pDataValidation);
if (!isset ($this->_parent)) {
throw new Exception('Cannot check for hyperlink when cell is not bound to a worksheet');
* @return PHPExcel_Cell_Hyperlink
if (!isset ($this->_parent)) {
throw new Exception('Cannot get hyperlink for cell that is not bound to a worksheet');
$hyperlink = $this->_parent->getHyperlink($this->getCoordinate());
* @param PHPExcel_Cell_Hyperlink $pHyperlink
public function setHyperlink(PHPExcel_Cell_Hyperlink $pHyperlink = null)
if (!isset ($this->_parent)) {
throw new Exception('Cannot set hyperlink for cell that is not bound to a worksheet');
$this->_parent->setHyperlink($this->getCoordinate(), $pHyperlink);
* @return PHPExcel_Worksheet
* @param PHPExcel_Worksheet $parent
$this->_parent = $parent;
* Is cell in a specific range?
* @param string $pRange Cell range (e.g. A1:A1)
if (strpos($pRange, ':') === false) {
list ($rangeA, $rangeB) = explode(':', $pRange);
// Calculate range outer borders
// Translate column into index
// Verify if cell is in range
($rangeStart[0] <= $myColumn && $rangeEnd[0] >= $myColumn) &&
($rangeStart[1] <= $myRow && $rangeEnd[1] >= $myRow)
* @param string $pCoordinateString
* @return array Array containing column and row (indexes 0 and 1)
if (strpos($pCoordinateString,':') !== false) {
throw new Exception('Cell coordinate string can not be a range of cells.');
} else if ($pCoordinateString == '') {
throw new Exception('Cell coordinate can not be zero-length string.');
} else if (preg_match("/([$]?[A-Z]+)([$]?\d+)/", $pCoordinateString, $matches)) {
list (, $column, $row) = $matches;
return array($column, $row);
throw new Exception('Invalid cell coordinate.');
* Make string coordinate absolute
* @param string $pCoordinateString
* @return string Absolute coordinate
if (strpos($pCoordinateString,':') === false && strpos($pCoordinateString,',') === false) {
// Create absolute coordinate
$returnValue = '$' . $column . '$' . $row;
throw new Exception("Coordinate string should not be a cell range.");
* Split range into coordinate strings
* @return array Array containg one or more arrays containing one or two coordinate strings
public static function splitRange($pRange = 'A1:A1')
for ($i = 0; $i < count($exploded); ++ $i) {
$exploded[$i] = explode(':', $exploded[$i]);
* Build range from coordinate strings
* @param array $pRange Array containg one or more arrays containing one or two coordinate strings
* @return string String representation of $pRange
throw new Exception('Range does not contain any information.');
for ($i = 0; $i < count($pRange); ++ $i) {
$pRange[$i] = implode(':', $pRange[$i]);
* Calculate range dimension
* @param string $pRange Cell range (e.g. A1:A1)
* @return array Range dimension (width, height)
if (strpos($pRange, ':') === false) {
list ($rangeA, $rangeB) = explode(':', $pRange);
// Calculate range outer borders
// Translate column into index
return array( ($rangeEnd[0] - $rangeStart[0] + 1), ($rangeEnd[1] - $rangeStart[1] + 1) );
* Calculate range boundaries
* @param string $pRange Cell range (e.g. A1:A1)
* @return array Range boundaries (staring Column, starting Row, Final Column, Final Row)
if (strpos($pRange, ':') === false) {
list ($rangeA, $rangeB) = explode(':', $pRange);
return array( self::coordinateFromString($rangeA), self::coordinateFromString($rangeB));
* Column index from string
* @return int Column index (base 1 !!!)
'A' => 1, 'B' => 2, 'C' => 3, 'D' => 4, 'E' => 5, 'F' => 6, 'G' => 7, 'H' => 8, 'I' => 9, 'J' => 10, 'K' => 11, 'L' => 12, 'M' => 13,
'N' => 14, 'O' => 15, 'P' => 16, 'Q' => 17, 'R' => 18, 'S' => 19, 'T' => 20, 'U' => 21, 'V' => 22, 'W' => 23, 'X' => 24, 'Y' => 25, 'Z' => 26
if (isset ($lookup[$pString]))
return $lookup[$pString];
// Convert column to integer
return (ord($pString{0}) - 64);
} elseif ($strLen == 2) {
return $result = ((1 + (ord($pString{0}) - 65)) * 26) + (ord($pString{1}) - 64);
} elseif ($strLen == 3) {
return ((1 + (ord($pString{0}) - 65)) * 676) + ((1 + (ord($pString{1}) - 65)) * 26) + (ord($pString{2}) - 64);
throw new Exception("Column string index can not be " . ($strLen != 0 ? "longer than 3 characters" : "empty") . ".");
* String from columnindex
* @param int $pColumnIndex Column index (base 0 !!!)
// Determine column string
if ($pColumnIndex < 26) {
return chr(65 + $pColumnIndex);
* Extract all cell references in range
* @param string $pRange Range (e.g. A1 or A1:A10 or A1:A10 A100:A1000)
* @return array Array containing single cell references
foreach ($aExplodeSpaces as $explodedSpaces) {
if (strpos($explodedSpaces,':') === false && strpos($explodedSpaces,',') === false) {
$returnValue[] = $explodedSpaces;
for ($i = 0; $i < count($range); ++ $i) {
if (count($range[$i]) == 1) {
$returnValue[] = $explodedSpaces;
$rangeStart = $rangeEnd = '';
$startingCol = $startingRow = $endingCol = $endingRow = 0;
list ($rangeStart, $rangeEnd) = $range[$i];
$currentCol = -- $startingCol;
$currentRow = $startingRow;
while ($currentCol < $endingCol) {
while ($currentRow <= $endingRow) {
$returnValue[] = $loopColumn. $currentRow;
$currentRow = $startingRow;
* @param PHPExcel_Cell $a Cell a
* @param PHPExcel_Cell $a Cell b
* @return int Result of comparison (always -1 or 1, never zero!)
public static function compareCells(PHPExcel_Cell $a, PHPExcel_Cell $b)
if ($a->_row < $b->_row) {
} elseif ($a->_row > $b->_row) {
* Get value binder to use
* @return PHPExcel_Cell_IValueBinder
if (is_null(self::$_valueBinder)) {
self::$_valueBinder = new PHPExcel_Cell_DefaultValueBinder();
return self::$_valueBinder;
* Set value binder to use
* @param PHPExcel_Cell_IValueBinder $binder
public static function setValueBinder(PHPExcel_Cell_IValueBinder $binder = null) {
throw new Exception("A PHPExcel_Cell_IValueBinder is required for PHPExcel to function correctly.");
self::$_valueBinder = $binder;
* Implement PHP __clone to create a deep clone, not just a shallow copy.
$vars = get_object_vars($this);
foreach ($vars as $key => $value) {
$this->$key = clone $value;
$this->_xfIndex = $pValue;
|