1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033 |
- <?php
- class PHPExcel_Cell
- {
-
- const DEFAULT_RANGE = 'A1:A1';
-
- private static $valueBinder;
-
- private $value;
-
- private $calculatedValue;
-
- private $dataType;
-
- private $parent;
-
- private $xfIndex = 0;
-
- private $formulaAttributes;
-
- public function notifyCacheController()
- {
- $this->parent->updateCacheData($this);
- return $this;
- }
- public function detach()
- {
- $this->parent = null;
- }
- public function attach(PHPExcel_CachedObjectStorage_CacheBase $parent)
- {
- $this->parent = $parent;
- }
-
- public function __construct($pValue = null, $pDataType = null, PHPExcel_Worksheet $pSheet = null)
- {
-
- $this->value = $pValue;
-
- $this->parent = $pSheet->getCellCacheController();
-
- if ($pDataType !== null) {
- if ($pDataType == PHPExcel_Cell_DataType::TYPE_STRING2) {
- $pDataType = PHPExcel_Cell_DataType::TYPE_STRING;
- }
- $this->dataType = $pDataType;
- } elseif (!self::getValueBinder()->bindValue($this, $pValue)) {
- throw new PHPExcel_Exception("Value could not be bound to cell.");
- }
- }
-
- public function getColumn()
- {
- return $this->parent->getCurrentColumn();
- }
-
- public function getRow()
- {
- return $this->parent->getCurrentRow();
- }
-
- public function getCoordinate()
- {
- return $this->parent->getCurrentAddress();
- }
-
- public function getValue()
- {
- return $this->value;
- }
-
- public function getFormattedValue()
- {
- return (string) PHPExcel_Style_NumberFormat::toFormattedString(
- $this->getCalculatedValue(),
- $this->getStyle()
- ->getNumberFormat()->getFormatCode()
- );
- }
-
- public function setValue($pValue = null)
- {
- if (!self::getValueBinder()->bindValue($this, $pValue)) {
- throw new PHPExcel_Exception("Value could not be bound to cell.");
- }
- return $this;
- }
-
- public function setValueExplicit($pValue = null, $pDataType = PHPExcel_Cell_DataType::TYPE_STRING)
- {
-
- switch ($pDataType) {
- case PHPExcel_Cell_DataType::TYPE_NULL:
- $this->value = $pValue;
- break;
- case PHPExcel_Cell_DataType::TYPE_STRING2:
- $pDataType = PHPExcel_Cell_DataType::TYPE_STRING;
-
- case PHPExcel_Cell_DataType::TYPE_STRING:
-
- case PHPExcel_Cell_DataType::TYPE_INLINE:
-
- $this->value = PHPExcel_Cell_DataType::checkString($pValue);
- break;
- case PHPExcel_Cell_DataType::TYPE_NUMERIC:
- $this->value = (float) $pValue;
- break;
- case PHPExcel_Cell_DataType::TYPE_FORMULA:
- $this->value = (string) $pValue;
- break;
- case PHPExcel_Cell_DataType::TYPE_BOOL:
- $this->value = (bool) $pValue;
- break;
- case PHPExcel_Cell_DataType::TYPE_ERROR:
- $this->value = PHPExcel_Cell_DataType::checkErrorCode($pValue);
- break;
- default:
- throw new PHPExcel_Exception('Invalid datatype: ' . $pDataType);
- break;
- }
-
- $this->dataType = $pDataType;
- return $this->notifyCacheController();
- }
-
- public function getCalculatedValue($resetLog = true)
- {
- if ($this->dataType == PHPExcel_Cell_DataType::TYPE_FORMULA) {
- try {
- $result = PHPExcel_Calculation::getInstance(
- $this->getWorksheet()->getParent()
- )->calculateCellValue($this, $resetLog);
-
- if (is_array($result)) {
- while (is_array($result)) {
- $result = array_pop($result);
- }
- }
- } catch (PHPExcel_Exception $ex) {
- if (($ex->getMessage() === 'Unable to access External Workbook') && ($this->calculatedValue !== null)) {
- return $this->calculatedValue;
- }
- $result = '#N/A';
- throw new PHPExcel_Calculation_Exception(
- $this->getWorksheet()->getTitle().'!'.$this->getCoordinate().' -> '.$ex->getMessage()
- );
- }
- if ($result === '#Not Yet Implemented') {
- return $this->calculatedValue;
- }
- return $result;
- } elseif ($this->value instanceof PHPExcel_RichText) {
- return $this->value->getPlainText();
- }
- return $this->value;
- }
-
- public function setCalculatedValue($pValue = null)
- {
- if ($pValue !== null) {
- $this->calculatedValue = (is_numeric($pValue)) ? (float) $pValue : $pValue;
- }
- return $this->notifyCacheController();
- }
-
- public function getOldCalculatedValue()
- {
- return $this->calculatedValue;
- }
-
- public function getDataType()
- {
- return $this->dataType;
- }
-
- public function setDataType($pDataType = PHPExcel_Cell_DataType::TYPE_STRING)
- {
- if ($pDataType == PHPExcel_Cell_DataType::TYPE_STRING2) {
- $pDataType = PHPExcel_Cell_DataType::TYPE_STRING;
- }
- $this->dataType = $pDataType;
- return $this->notifyCacheController();
- }
-
- public function isFormula()
- {
- return $this->dataType == PHPExcel_Cell_DataType::TYPE_FORMULA;
- }
-
- public function hasDataValidation()
- {
- if (!isset($this->parent)) {
- throw new PHPExcel_Exception('Cannot check for data validation when cell is not bound to a worksheet');
- }
- return $this->getWorksheet()->dataValidationExists($this->getCoordinate());
- }
-
- public function getDataValidation()
- {
- if (!isset($this->parent)) {
- throw new PHPExcel_Exception('Cannot get data validation for cell that is not bound to a worksheet');
- }
- return $this->getWorksheet()->getDataValidation($this->getCoordinate());
- }
-
- public function setDataValidation(PHPExcel_Cell_DataValidation $pDataValidation = null)
- {
- if (!isset($this->parent)) {
- throw new PHPExcel_Exception('Cannot set data validation for cell that is not bound to a worksheet');
- }
- $this->getWorksheet()->setDataValidation($this->getCoordinate(), $pDataValidation);
- return $this->notifyCacheController();
- }
-
- public function hasHyperlink()
- {
- if (!isset($this->parent)) {
- throw new PHPExcel_Exception('Cannot check for hyperlink when cell is not bound to a worksheet');
- }
- return $this->getWorksheet()->hyperlinkExists($this->getCoordinate());
- }
-
- public function getHyperlink()
- {
- if (!isset($this->parent)) {
- throw new PHPExcel_Exception('Cannot get hyperlink for cell that is not bound to a worksheet');
- }
- return $this->getWorksheet()->getHyperlink($this->getCoordinate());
- }
-
- public function setHyperlink(PHPExcel_Cell_Hyperlink $pHyperlink = null)
- {
- if (!isset($this->parent)) {
- throw new PHPExcel_Exception('Cannot set hyperlink for cell that is not bound to a worksheet');
- }
- $this->getWorksheet()->setHyperlink($this->getCoordinate(), $pHyperlink);
- return $this->notifyCacheController();
- }
-
- public function getParent()
- {
- return $this->parent;
- }
-
- public function getWorksheet()
- {
- return $this->parent->getParent();
- }
-
- public function isInMergeRange()
- {
- return (boolean) $this->getMergeRange();
- }
-
- public function isMergeRangeValueCell()
- {
- if ($mergeRange = $this->getMergeRange()) {
- $mergeRange = PHPExcel_Cell::splitRange($mergeRange);
- list($startCell) = $mergeRange[0];
- if ($this->getCoordinate() === $startCell) {
- return true;
- }
- }
- return false;
- }
-
- public function getMergeRange()
- {
- foreach ($this->getWorksheet()->getMergeCells() as $mergeRange) {
- if ($this->isInRange($mergeRange)) {
- return $mergeRange;
- }
- }
- return false;
- }
-
- public function getStyle()
- {
- return $this->getWorksheet()->getStyle($this->getCoordinate());
- }
-
- public function rebindParent(PHPExcel_Worksheet $parent)
- {
- $this->parent = $parent->getCellCacheController();
- return $this->notifyCacheController();
- }
-
- public function isInRange($pRange = 'A1:A1')
- {
- list($rangeStart, $rangeEnd) = self::rangeBoundaries($pRange);
-
- $myColumn = self::columnIndexFromString($this->getColumn());
- $myRow = $this->getRow();
-
- return (($rangeStart[0] <= $myColumn) && ($rangeEnd[0] >= $myColumn) &&
- ($rangeStart[1] <= $myRow) && ($rangeEnd[1] >= $myRow)
- );
- }
-
- public static function coordinateFromString($pCoordinateString = 'A1')
- {
- if (preg_match("/^([$]?[A-Z]{1,3})([$]?\d{1,7})$/", $pCoordinateString, $matches)) {
- return array($matches[1],$matches[2]);
- } elseif ((strpos($pCoordinateString, ':') !== false) || (strpos($pCoordinateString, ',') !== false)) {
- throw new PHPExcel_Exception('Cell coordinate string can not be a range of cells');
- } elseif ($pCoordinateString == '') {
- throw new PHPExcel_Exception('Cell coordinate can not be zero-length string');
- }
- throw new PHPExcel_Exception('Invalid cell coordinate '.$pCoordinateString);
- }
-
- public static function absoluteReference($pCoordinateString = 'A1')
- {
- if (strpos($pCoordinateString, ':') === false && strpos($pCoordinateString, ',') === false) {
-
- $worksheet = '';
- $cellAddress = explode('!', $pCoordinateString);
- if (count($cellAddress) > 1) {
- list($worksheet, $pCoordinateString) = $cellAddress;
- }
- if ($worksheet > '') {
- $worksheet .= '!';
- }
-
- if (ctype_digit($pCoordinateString)) {
- return $worksheet . '$' . $pCoordinateString;
- } elseif (ctype_alpha($pCoordinateString)) {
- return $worksheet . '$' . strtoupper($pCoordinateString);
- }
- return $worksheet . self::absoluteCoordinate($pCoordinateString);
- }
- throw new PHPExcel_Exception('Cell coordinate string can not be a range of cells');
- }
-
- public static function absoluteCoordinate($pCoordinateString = 'A1')
- {
- if (strpos($pCoordinateString, ':') === false && strpos($pCoordinateString, ',') === false) {
-
- $worksheet = '';
- $cellAddress = explode('!', $pCoordinateString);
- if (count($cellAddress) > 1) {
- list($worksheet, $pCoordinateString) = $cellAddress;
- }
- if ($worksheet > '') {
- $worksheet .= '!';
- }
-
- list($column, $row) = self::coordinateFromString($pCoordinateString);
- $column = ltrim($column, '$');
- $row = ltrim($row, '$');
- return $worksheet . '$' . $column . '$' . $row;
- }
- throw new PHPExcel_Exception('Cell coordinate string can not be a range of cells');
- }
-
- public static function splitRange($pRange = 'A1:A1')
- {
-
- if (empty($pRange)) {
- $pRange = self::DEFAULT_RANGE;
- }
- $exploded = explode(',', $pRange);
- $counter = count($exploded);
- for ($i = 0; $i < $counter; ++$i) {
- $exploded[$i] = explode(':', $exploded[$i]);
- }
- return $exploded;
- }
-
- public static function buildRange($pRange)
- {
-
- if (!is_array($pRange) || empty($pRange) || !is_array($pRange[0])) {
- throw new PHPExcel_Exception('Range does not contain any information');
- }
-
- $imploded = array();
- $counter = count($pRange);
- for ($i = 0; $i < $counter; ++$i) {
- $pRange[$i] = implode(':', $pRange[$i]);
- }
- $imploded = implode(',', $pRange);
- return $imploded;
- }
-
- public static function rangeBoundaries($pRange = 'A1:A1')
- {
-
- if (empty($pRange)) {
- $pRange = self::DEFAULT_RANGE;
- }
-
- $pRange = strtoupper($pRange);
-
- if (strpos($pRange, ':') === false) {
- $rangeA = $rangeB = $pRange;
- } else {
- list($rangeA, $rangeB) = explode(':', $pRange);
- }
-
- $rangeStart = self::coordinateFromString($rangeA);
- $rangeEnd = self::coordinateFromString($rangeB);
-
- $rangeStart[0] = self::columnIndexFromString($rangeStart[0]);
- $rangeEnd[0] = self::columnIndexFromString($rangeEnd[0]);
- return array($rangeStart, $rangeEnd);
- }
-
- public static function rangeDimension($pRange = 'A1:A1')
- {
-
- list($rangeStart, $rangeEnd) = self::rangeBoundaries($pRange);
- return array( ($rangeEnd[0] - $rangeStart[0] + 1), ($rangeEnd[1] - $rangeStart[1] + 1) );
- }
-
- public static function getRangeBoundaries($pRange = 'A1:A1')
- {
-
- if (empty($pRange)) {
- $pRange = self::DEFAULT_RANGE;
- }
-
- $pRange = strtoupper($pRange);
-
- if (strpos($pRange, ':') === false) {
- $rangeA = $rangeB = $pRange;
- } else {
- list($rangeA, $rangeB) = explode(':', $pRange);
- }
- return array( self::coordinateFromString($rangeA), self::coordinateFromString($rangeB));
- }
-
- public static function columnIndexFromString($pString = 'A')
- {
-
-
-
- static $_indexCache = array();
- if (isset($_indexCache[$pString])) {
- return $_indexCache[$pString];
- }
-
-
-
- static $_columnLookup = array(
- '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,
- '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($pString{0})) {
- if (!isset($pString{1})) {
- $_indexCache[$pString] = $_columnLookup[$pString];
- return $_indexCache[$pString];
- } elseif (!isset($pString{2})) {
- $_indexCache[$pString] = $_columnLookup[$pString{0}] * 26 + $_columnLookup[$pString{1}];
- return $_indexCache[$pString];
- } elseif (!isset($pString{3})) {
- $_indexCache[$pString] = $_columnLookup[$pString{0}] * 676 + $_columnLookup[$pString{1}] * 26 + $_columnLookup[$pString{2}];
- return $_indexCache[$pString];
- }
- }
- throw new PHPExcel_Exception("Column string index can not be " . ((isset($pString{0})) ? "longer than 3 characters" : "empty"));
- }
-
- public static function stringFromColumnIndex($pColumnIndex = 0)
- {
-
-
-
- static $_indexCache = array();
- if (!isset($_indexCache[$pColumnIndex])) {
-
- if ($pColumnIndex < 26) {
- $_indexCache[$pColumnIndex] = chr(65 + $pColumnIndex);
- } elseif ($pColumnIndex < 702) {
- $_indexCache[$pColumnIndex] = chr(64 + ($pColumnIndex / 26)) .
- chr(65 + $pColumnIndex % 26);
- } else {
- $_indexCache[$pColumnIndex] = chr(64 + (($pColumnIndex - 26) / 676)) .
- chr(65 + ((($pColumnIndex - 26) % 676) / 26)) .
- chr(65 + $pColumnIndex % 26);
- }
- }
- return $_indexCache[$pColumnIndex];
- }
-
- public static function extractAllCellReferencesInRange($pRange = 'A1')
- {
-
- $returnValue = array();
-
- $cellBlocks = explode(' ', str_replace('$', '', strtoupper($pRange)));
- foreach ($cellBlocks as $cellBlock) {
-
- if (strpos($cellBlock, ':') === false && strpos($cellBlock, ',') === false) {
- $returnValue[] = $cellBlock;
- continue;
- }
-
- $ranges = self::splitRange($cellBlock);
- foreach ($ranges as $range) {
-
- if (!isset($range[1])) {
- $returnValue[] = $range[0];
- continue;
- }
-
- list($rangeStart, $rangeEnd) = $range;
- sscanf($rangeStart, '%[A-Z]%d', $startCol, $startRow);
- sscanf($rangeEnd, '%[A-Z]%d', $endCol, $endRow);
- ++$endCol;
-
- $currentCol = $startCol;
- $currentRow = $startRow;
-
- while ($currentCol != $endCol) {
- while ($currentRow <= $endRow) {
- $returnValue[] = $currentCol.$currentRow;
- ++$currentRow;
- }
- ++$currentCol;
- $currentRow = $startRow;
- }
- }
- }
-
- $sortKeys = array();
- foreach (array_unique($returnValue) as $coord) {
- sscanf($coord, '%[A-Z]%d', $column, $row);
- $sortKeys[sprintf('%3s%09d', $column, $row)] = $coord;
- }
- ksort($sortKeys);
-
- return array_values($sortKeys);
- }
-
- public static function compareCells(PHPExcel_Cell $a, PHPExcel_Cell $b)
- {
- if ($a->getRow() < $b->getRow()) {
- return -1;
- } elseif ($a->getRow() > $b->getRow()) {
- return 1;
- } elseif (self::columnIndexFromString($a->getColumn()) < self::columnIndexFromString($b->getColumn())) {
- return -1;
- } else {
- return 1;
- }
- }
-
- public static function getValueBinder()
- {
- if (self::$valueBinder === null) {
- self::$valueBinder = new PHPExcel_Cell_DefaultValueBinder();
- }
- return self::$valueBinder;
- }
-
- public static function setValueBinder(PHPExcel_Cell_IValueBinder $binder = null)
- {
- if ($binder === null) {
- throw new PHPExcel_Exception("A PHPExcel_Cell_IValueBinder is required for PHPExcel to function correctly.");
- }
- self::$valueBinder = $binder;
- }
-
- public function __clone()
- {
- $vars = get_object_vars($this);
- foreach ($vars as $key => $value) {
- if ((is_object($value)) && ($key != 'parent')) {
- $this->$key = clone $value;
- } else {
- $this->$key = $value;
- }
- }
- }
-
- public function getXfIndex()
- {
- return $this->xfIndex;
- }
-
- public function setXfIndex($pValue = 0)
- {
- $this->xfIndex = $pValue;
- return $this->notifyCacheController();
- }
-
- public function setFormulaAttributes($pAttributes)
- {
- $this->formulaAttributes = $pAttributes;
- return $this;
- }
-
- public function getFormulaAttributes()
- {
- return $this->formulaAttributes;
- }
-
- public function __toString()
- {
- return (string) $this->getValue();
- }
- }
|