Skip to content

Instantly share code, notes, and snippets.

@eru
Created June 3, 2023 09:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eru/8545d5ffdc8daf7320ce200eb13c7730 to your computer and use it in GitHub Desktop.
Save eru/8545d5ffdc8daf7320ce200eb13c7730 to your computer and use it in GitHub Desktop.
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Calculation/Engineering.php PHPExcel-1.8.2.new/Classes/PHPExcel/Calculation/Engineering.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Calculation/Engineering.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Calculation/Engineering.php 2023-06-03 17:17:14.864356436 +0900
@@ -768,7 +768,7 @@
// Split the input into its Real and Imaginary components
$leadingSign = 0;
if (strlen($workString) > 0) {
- $leadingSign = (($workString{0} == '+') || ($workString{0} == '-')) ? 1 : 0;
+ $leadingSign = (($workString[0] == '+') || ($workString[0] == '-')) ? 1 : 0;
}
$power = '';
$realNumber = strtok($workString, '+-');
@@ -809,16 +809,16 @@
*/
private static function cleanComplex($complexNumber)
{
- if ($complexNumber{0} == '+') {
+ if ($complexNumber[0] == '+') {
$complexNumber = substr($complexNumber, 1);
}
- if ($complexNumber{0} == '0') {
+ if ($complexNumber[0] == '0') {
$complexNumber = substr($complexNumber, 1);
}
- if ($complexNumber{0} == '.') {
+ if ($complexNumber[0] == '.') {
$complexNumber = '0'.$complexNumber;
}
- if ($complexNumber{0} == '+') {
+ if ($complexNumber[0] == '+') {
$complexNumber = substr($complexNumber, 1);
}
return $complexNumber;
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Calculation/FormulaParser.php PHPExcel-1.8.2.new/Classes/PHPExcel/Calculation/FormulaParser.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Calculation/FormulaParser.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Calculation/FormulaParser.php 2023-06-03 17:39:48.979427129 +0900
@@ -159,7 +159,7 @@
// Check if the formula has a valid starting =
$formulaLength = strlen($this->formula);
- if ($formulaLength < 2 || $this->formula{0} != '=') {
+ if ($formulaLength < 2 || $this->formula[0] != '=') {
return;
}
@@ -181,8 +181,8 @@
// embeds are doubled
// end marks token
if ($inString) {
- if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::QUOTE_DOUBLE) {
- if ((($index + 2) <= $formulaLength) && ($this->formula{$index + 1} == PHPExcel_Calculation_FormulaParser::QUOTE_DOUBLE)) {
+ if ($this->formula[$index] == PHPExcel_Calculation_FormulaParser::QUOTE_DOUBLE) {
+ if ((($index + 2) <= $formulaLength) && ($this->formula[$index + 1] == PHPExcel_Calculation_FormulaParser::QUOTE_DOUBLE)) {
$value .= PHPExcel_Calculation_FormulaParser::QUOTE_DOUBLE;
++$index;
} else {
@@ -191,7 +191,7 @@
$value = "";
}
} else {
- $value .= $this->formula{$index};
+ $value .= $this->formula[$index];
}
++$index;
continue;
@@ -201,15 +201,15 @@
// embeds are double
// end does not mark a token
if ($inPath) {
- if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::QUOTE_SINGLE) {
- if ((($index + 2) <= $formulaLength) && ($this->formula{$index + 1} == PHPExcel_Calculation_FormulaParser::QUOTE_SINGLE)) {
+ if ($this->formula[$index] == PHPExcel_Calculation_FormulaParser::QUOTE_SINGLE) {
+ if ((($index + 2) <= $formulaLength) && ($this->formula[$index + 1] == PHPExcel_Calculation_FormulaParser::QUOTE_SINGLE)) {
$value .= PHPExcel_Calculation_FormulaParser::QUOTE_SINGLE;
++$index;
} else {
$inPath = false;
}
} else {
- $value .= $this->formula{$index};
+ $value .= $this->formula[$index];
}
++$index;
continue;
@@ -219,10 +219,10 @@
// no embeds (changed to "()" by Excel)
// end does not mark a token
if ($inRange) {
- if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::BRACKET_CLOSE) {
+ if ($this->formula[$index] == PHPExcel_Calculation_FormulaParser::BRACKET_CLOSE) {
$inRange = false;
}
- $value .= $this->formula{$index};
+ $value .= $this->formula[$index];
++$index;
continue;
}
@@ -230,7 +230,7 @@
// error values
// end marks a token, determined from absolute list of values
if ($inError) {
- $value .= $this->formula{$index};
+ $value .= $this->formula[$index];
++$index;
if (in_array($value, $ERRORS)) {
$inError = false;
@@ -241,10 +241,10 @@
}
// scientific notation check
- if (strpos(PHPExcel_Calculation_FormulaParser::OPERATORS_SN, $this->formula{$index}) !== false) {
+ if (strpos(PHPExcel_Calculation_FormulaParser::OPERATORS_SN, $this->formula[$index]) !== false) {
if (strlen($value) > 1) {
- if (preg_match("/^[1-9]{1}(\.[0-9]+)?E{1}$/", $this->formula{$index}) != 0) {
- $value .= $this->formula{$index};
+ if (preg_match("/^[1-9]{1}(\.[0-9]+)?E{1}$/", $this->formula[$index]) != 0) {
+ $value .= $this->formula[$index];
++$index;
continue;
}
@@ -254,7 +254,7 @@
// independent character evaluation (order not important)
// establish state-dependent character evaluations
- if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::QUOTE_DOUBLE) {
+ if ($this->formula[$index] == PHPExcel_Calculation_FormulaParser::QUOTE_DOUBLE) {
if (strlen($value > 0)) {
// unexpected
$tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_UNKNOWN);
@@ -265,7 +265,7 @@
continue;
}
- if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::QUOTE_SINGLE) {
+ if ($this->formula[$index] == PHPExcel_Calculation_FormulaParser::QUOTE_SINGLE) {
if (strlen($value) > 0) {
// unexpected
$tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_UNKNOWN);
@@ -276,14 +276,14 @@
continue;
}
- if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::BRACKET_OPEN) {
+ if ($this->formula[$index] == PHPExcel_Calculation_FormulaParser::BRACKET_OPEN) {
$inRange = true;
$value .= PHPExcel_Calculation_FormulaParser::BRACKET_OPEN;
++$index;
continue;
}
- if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::ERROR_START) {
+ if ($this->formula[$index] == PHPExcel_Calculation_FormulaParser::ERROR_START) {
if (strlen($value) > 0) {
// unexpected
$tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_UNKNOWN);
@@ -296,7 +296,7 @@
}
// mark start and end of arrays and array rows
- if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::BRACE_OPEN) {
+ if ($this->formula[$index] == PHPExcel_Calculation_FormulaParser::BRACE_OPEN) {
if (strlen($value) > 0) {
// unexpected
$tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_UNKNOWN);
@@ -315,7 +315,7 @@
continue;
}
- if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::SEMICOLON) {
+ if ($this->formula[$index] == PHPExcel_Calculation_FormulaParser::SEMICOLON) {
if (strlen($value) > 0) {
$tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND);
$value = "";
@@ -337,7 +337,7 @@
continue;
}
- if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::BRACE_CLOSE) {
+ if ($this->formula[$index] == PHPExcel_Calculation_FormulaParser::BRACE_CLOSE) {
if (strlen($value) > 0) {
$tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND);
$value = "";
@@ -358,14 +358,14 @@
}
// trim white-space
- if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::WHITESPACE) {
+ if ($this->formula[$index] == PHPExcel_Calculation_FormulaParser::WHITESPACE) {
if (strlen($value) > 0) {
$tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND);
$value = "";
}
$tokens1[] = new PHPExcel_Calculation_FormulaToken("", PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_WHITESPACE);
++$index;
- while (($this->formula{$index} == PHPExcel_Calculation_FormulaParser::WHITESPACE) && ($index < $formulaLength)) {
+ while (($this->formula[$index] == PHPExcel_Calculation_FormulaParser::WHITESPACE) && ($index < $formulaLength)) {
++$index;
}
continue;
@@ -385,29 +385,29 @@
}
// standard infix operators
- if (strpos(PHPExcel_Calculation_FormulaParser::OPERATORS_INFIX, $this->formula{$index}) !== false) {
+ if (strpos(PHPExcel_Calculation_FormulaParser::OPERATORS_INFIX, $this->formula[$index]) !== false) {
if (strlen($value) > 0) {
$tokens1[] =new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND);
$value = "";
}
- $tokens1[] = new PHPExcel_Calculation_FormulaToken($this->formula{$index}, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERATORINFIX);
+ $tokens1[] = new PHPExcel_Calculation_FormulaToken($this->formula[$index], PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERATORINFIX);
++$index;
continue;
}
// standard postfix operators (only one)
- if (strpos(PHPExcel_Calculation_FormulaParser::OPERATORS_POSTFIX, $this->formula{$index}) !== false) {
+ if (strpos(PHPExcel_Calculation_FormulaParser::OPERATORS_POSTFIX, $this->formula[$index]) !== false) {
if (strlen($value) > 0) {
$tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND);
$value = "";
}
- $tokens1[] = new PHPExcel_Calculation_FormulaToken($this->formula{$index}, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERATORPOSTFIX);
+ $tokens1[] = new PHPExcel_Calculation_FormulaToken($this->formula[$index], PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERATORPOSTFIX);
++$index;
continue;
}
// start subexpression or function
- if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::PAREN_OPEN) {
+ if ($this->formula[$index] == PHPExcel_Calculation_FormulaParser::PAREN_OPEN) {
if (strlen($value) > 0) {
$tmp = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_FUNCTION, PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_START);
$tokens1[] = $tmp;
@@ -423,7 +423,7 @@
}
// function, subexpression, or array parameters, or operand unions
- if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::COMMA) {
+ if ($this->formula[$index] == PHPExcel_Calculation_FormulaParser::COMMA) {
if (strlen($value) > 0) {
$tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND);
$value = "";
@@ -444,7 +444,7 @@
}
// stop subexpression
- if ($this->formula{$index} == PHPExcel_Calculation_FormulaParser::PAREN_CLOSE) {
+ if ($this->formula[$index] == PHPExcel_Calculation_FormulaParser::PAREN_CLOSE) {
if (strlen($value) > 0) {
$tokens1[] = new PHPExcel_Calculation_FormulaToken($value, PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_OPERAND);
$value = "";
@@ -460,7 +460,7 @@
}
// token accumulation
- $value .= $this->formula{$index};
+ $value .= $this->formula[$index];
++$index;
}
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Calculation/Functions.php PHPExcel-1.8.2.new/Classes/PHPExcel/Calculation/Functions.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Calculation/Functions.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Calculation/Functions.php 2023-06-03 17:17:14.870356555 +0900
@@ -318,10 +318,10 @@
public static function ifCondition($condition)
{
$condition = PHPExcel_Calculation_Functions::flattenSingleValue($condition);
- if (!isset($condition{0})) {
+ if (!isset($condition[0])) {
$condition = '=""';
}
- if (!in_array($condition{0}, array('>', '<', '='))) {
+ if (!in_array($condition[0], array('>', '<', '='))) {
if (!is_numeric($condition)) {
$condition = PHPExcel_Calculation::wrapResult(strtoupper($condition));
}
@@ -558,7 +558,7 @@
return (integer) $value;
case 'string':
// Errors
- if ((strlen($value) > 0) && ($value{0} == '#')) {
+ if ((strlen($value) > 0) && ($value[0] == '#')) {
return $value;
}
break;
@@ -608,7 +608,7 @@
return 64;
} elseif (is_string($value)) {
// Errors
- if ((strlen($value) > 0) && ($value{0} == '#')) {
+ if ((strlen($value) > 0) && ($value[0] == '#')) {
return 16;
}
return 2;
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Calculation/TextData.php PHPExcel-1.8.2.new/Classes/PHPExcel/Calculation/TextData.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Calculation/TextData.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Calculation/TextData.php 2023-06-03 17:18:52.600310317 +0900
@@ -40,19 +40,19 @@
private static function unicodeToOrd($c)
{
- if (ord($c{0}) >=0 && ord($c{0}) <= 127) {
- return ord($c{0});
- } elseif (ord($c{0}) >= 192 && ord($c{0}) <= 223) {
- return (ord($c{0})-192)*64 + (ord($c{1})-128);
- } elseif (ord($c{0}) >= 224 && ord($c{0}) <= 239) {
- return (ord($c{0})-224)*4096 + (ord($c{1})-128)*64 + (ord($c{2})-128);
- } elseif (ord($c{0}) >= 240 && ord($c{0}) <= 247) {
- return (ord($c{0})-240)*262144 + (ord($c{1})-128)*4096 + (ord($c{2})-128)*64 + (ord($c{3})-128);
- } elseif (ord($c{0}) >= 248 && ord($c{0}) <= 251) {
- return (ord($c{0})-248)*16777216 + (ord($c{1})-128)*262144 + (ord($c{2})-128)*4096 + (ord($c{3})-128)*64 + (ord($c{4})-128);
- } elseif (ord($c{0}) >= 252 && ord($c{0}) <= 253) {
- return (ord($c{0})-252)*1073741824 + (ord($c{1})-128)*16777216 + (ord($c{2})-128)*262144 + (ord($c{3})-128)*4096 + (ord($c{4})-128)*64 + (ord($c{5})-128);
- } elseif (ord($c{0}) >= 254 && ord($c{0}) <= 255) {
+ if (ord($c[0]) >=0 && ord($c[0]) <= 127) {
+ return ord($c[0]);
+ } elseif (ord($c[0]) >= 192 && ord($c[0]) <= 223) {
+ return (ord($c[0])-192)*64 + (ord($c[1])-128);
+ } elseif (ord($c[0]) >= 224 && ord($c[0]) <= 239) {
+ return (ord($c[0])-224)*4096 + (ord($c[1])-128)*64 + (ord($c[2])-128);
+ } elseif (ord($c[0]) >= 240 && ord($c[0]) <= 247) {
+ return (ord($c[0])-240)*262144 + (ord($c[1])-128)*4096 + (ord($c[2])-128)*64 + (ord($c[3])-128);
+ } elseif (ord($c[0]) >= 248 && ord($c[0]) <= 251) {
+ return (ord($c[0])-248)*16777216 + (ord($c[1])-128)*262144 + (ord($c[2])-128)*4096 + (ord($c[3])-128)*64 + (ord($c[4])-128);
+ } elseif (ord($c[0]) >= 252 && ord($c[0]) <= 253) {
+ return (ord($c[0])-252)*1073741824 + (ord($c[1])-128)*16777216 + (ord($c[2])-128)*262144 + (ord($c[3])-128)*4096 + (ord($c[4])-128)*64 + (ord($c[5])-128);
+ } elseif (ord($c[0]) >= 254 && ord($c[0]) <= 255) {
// error
return PHPExcel_Calculation_Functions::VALUE();
}
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Calculation.php PHPExcel-1.8.2.new/Classes/PHPExcel/Calculation.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Calculation.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Calculation.php 2023-06-03 17:48:04.497333513 +0900
@@ -2548,7 +2548,7 @@
public static function unwrapResult($value)
{
if (is_string($value)) {
- if ((isset($value{0})) && ($value{0} == '"') && (substr($value, -1) == '"')) {
+ if ((isset($value[0])) && ($value[0] == '"') && (substr($value, -1) == '"')) {
return substr($value, 1, -1);
}
// Convert numeric errors to NaN error
@@ -2669,11 +2669,11 @@
// Basic validation that this is indeed a formula
// We return an empty array if not
$formula = trim($formula);
- if ((!isset($formula{0})) || ($formula{0} != '=')) {
+ if ((!isset($formula[0])) || ($formula[0] != '=')) {
return array();
}
$formula = ltrim(substr($formula, 1));
- if (!isset($formula{0})) {
+ if (!isset($formula[0])) {
return array();
}
@@ -2761,11 +2761,11 @@
// Basic validation that this is indeed a formula
// We simply return the cell value if not
$formula = trim($formula);
- if ($formula{0} != '=') {
+ if ($formula[0] != '=') {
return self::wrapResult($formula);
}
$formula = ltrim(substr($formula, 1));
- if (!isset($formula{0})) {
+ if (!isset($formula[0])) {
return self::wrapResult($formula);
}
@@ -2777,7 +2777,7 @@
return $cellValue;
}
- if (($wsTitle{0} !== "\x00") && ($this->cyclicReferenceStack->onStack($wsCellReference))) {
+ if (($wsTitle[0] !== "\x00") && ($this->cyclicReferenceStack->onStack($wsCellReference))) {
if ($this->cyclicFormulaCount <= 0) {
$this->cyclicFormulaCell = '';
return $this->raiseFormulaError('Cyclic Reference in Formula');
@@ -3031,7 +3031,7 @@
} else {
if ($value == '') {
return 'an empty string';
- } elseif ($value{0} == '#') {
+ } elseif ($value[0] == '#') {
return 'a '.$value.' error';
} else {
$typeString = 'a string';
@@ -3163,10 +3163,10 @@
// Loop through the formula extracting each operator and operand in turn
while (true) {
//echo 'Assessing Expression '.substr($formula, $index), PHP_EOL;
- $opCharacter = $formula{$index}; // Get the first character of the value at the current index position
+ $opCharacter = $formula[$index]; // Get the first character of the value at the current index position
//echo 'Initial character of expression block is '.$opCharacter, PHP_EOL;
- if ((isset(self::$comparisonOperators[$opCharacter])) && (strlen($formula) > $index) && (isset(self::$comparisonOperators[$formula{$index+1}]))) {
- $opCharacter .= $formula{++$index};
+ if ((isset(self::$comparisonOperators[$opCharacter])) && (strlen($formula) > $index) && (isset(self::$comparisonOperators[$formula[$index+1]]))) {
+ $opCharacter .= $formula[++$index];
//echo 'Initial character of expression block is comparison operator '.$opCharacter.PHP_EOL;
}
@@ -3454,11 +3454,11 @@
}
}
// Ignore white space
- while (($formula{$index} == "\n") || ($formula{$index} == "\r")) {
+ while (($formula[$index] == "\n") || ($formula[$index] == "\r")) {
++$index;
}
- if ($formula{$index} == ' ') {
- while ($formula{$index} == ' ') {
+ if ($formula[$index] == ' ') {
+ while ($formula[$index] == ' ') {
++$index;
}
// If we're expecting an operator, but only have a space between the previous and next operands (and both are
@@ -3888,7 +3888,7 @@
// echo 'Token is a PHPExcel constant: '.$excelConstant.'<br />';
$stack->push('Constant Value', self::$excelConstants[$excelConstant]);
$this->_debugLog->writeDebugLog('Evaluating Constant ', $excelConstant, ' as ', $this->showTypeDetails(self::$excelConstants[$excelConstant]));
- } elseif ((is_numeric($token)) || ($token === null) || (is_bool($token)) || ($token == '') || ($token{0} == '"') || ($token{0} == '#')) {
+ } elseif ((is_numeric($token)) || ($token === null) || (is_bool($token)) || ($token == '') || ($token[0] == '"') || ($token[0] == '#')) {
// echo 'Token is a number, boolean, string, null or an Excel error<br />';
$stack->push('Value', $token);
// if the token is a named range, push the named range name onto the stack
@@ -3933,13 +3933,13 @@
if (is_string($operand)) {
// We only need special validations for the operand if it is a string
// Start by stripping off the quotation marks we use to identify true excel string values internally
- if ($operand > '' && $operand{0} == '"') {
+ if ($operand > '' && $operand[0] == '"') {
$operand = self::unwrapResult($operand);
}
// If the string is a numeric value, we treat it as a numeric, so no further testing
if (!is_numeric($operand)) {
// If not a numeric, test to see if the value is an Excel error, and so can't be used in normal binary operations
- if ($operand > '' && $operand{0} == '#') {
+ if ($operand > '' && $operand[0] == '#') {
$stack->push('Value', $operand);
$this->_debugLog->writeDebugLog('Evaluation Result is ', $this->showTypeDetails($operand));
return false;
@@ -3995,10 +3995,10 @@
}
// Simple validate the two operands if they are string values
- if (is_string($operand1) && $operand1 > '' && $operand1{0} == '"') {
+ if (is_string($operand1) && $operand1 > '' && $operand1[0] == '"') {
$operand1 = self::unwrapResult($operand1);
}
- if (is_string($operand2) && $operand2 > '' && $operand2{0} == '"') {
+ if (is_string($operand2) && $operand2 > '' && $operand2[0] == '"') {
$operand2 = self::unwrapResult($operand2);
}
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Cell/DefaultValueBinder.php PHPExcel-1.8.2.new/Classes/PHPExcel/Cell/DefaultValueBinder.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Cell/DefaultValueBinder.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Cell/DefaultValueBinder.php 2023-06-03 17:19:28.177021538 +0900
@@ -79,7 +79,7 @@
return PHPExcel_Cell_DataType::TYPE_STRING;
} elseif ($pValue instanceof PHPExcel_RichText) {
return PHPExcel_Cell_DataType::TYPE_INLINE;
- } elseif ($pValue{0} === '=' && strlen($pValue) > 1) {
+ } elseif ($pValue[0] === '=' && strlen($pValue) > 1) {
return PHPExcel_Cell_DataType::TYPE_FORMULA;
} elseif (is_bool($pValue)) {
return PHPExcel_Cell_DataType::TYPE_BOOL;
@@ -87,7 +87,7 @@
return PHPExcel_Cell_DataType::TYPE_NUMERIC;
} elseif (preg_match('/^[\+\-]?([0-9]+\\.?[0-9]*|[0-9]*\\.?[0-9]+)([Ee][\-\+]?[0-2]?\d{1,3})?$/', $pValue)) {
$tValue = ltrim($pValue, '+-');
- if (is_string($pValue) && $tValue{0} === '0' && strlen($tValue) > 1 && $tValue{1} !== '.') {
+ if (is_string($pValue) && $tValue[0] === '0' && strlen($tValue) > 1 && $tValue[1] !== '.') {
return PHPExcel_Cell_DataType::TYPE_STRING;
} elseif ((strpos($pValue, '.') === false) && ($pValue > PHP_INT_MAX)) {
return PHPExcel_Cell_DataType::TYPE_STRING;
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Cell.php PHPExcel-1.8.2.new/Classes/PHPExcel/Cell.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Cell.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Cell.php 2023-06-03 17:19:07.028598751 +0900
@@ -809,19 +809,19 @@
// We also use the language construct isset() rather than the more costly strlen() function to match the length of $pString
// for improved performance
- if (isset($pString{0})) {
- if (!isset($pString{1})) {
+ 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}];
+ } 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}];
+ } 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"));
+ throw new PHPExcel_Exception("Column string index can not be " . ((isset($pString[0])) ? "longer than 3 characters" : "empty"));
}
/**
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/IOFactory.php PHPExcel-1.8.2.new/Classes/PHPExcel/IOFactory.php
--- PHPExcel-1.8.2/Classes/PHPExcel/IOFactory.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/IOFactory.php 2023-06-03 17:17:14.880356755 +0900
@@ -44,8 +44,8 @@
* @static
*/
private static $searchLocations = array(
- array( 'type' => 'IWriter', 'path' => 'PHPExcel/Writer/{0}.php', 'class' => 'PHPExcel_Writer_{0}' ),
- array( 'type' => 'IReader', 'path' => 'PHPExcel/Reader/{0}.php', 'class' => 'PHPExcel_Reader_{0}' )
+ array( 'type' => 'IWriter', 'path' => 'PHPExcel/Writer/[0].php', 'class' => 'PHPExcel_Writer_[0]' ),
+ array( 'type' => 'IReader', 'path' => 'PHPExcel/Reader/[0].php', 'class' => 'PHPExcel_Reader_[0]' )
);
/**
@@ -108,8 +108,8 @@
* @static
* @access public
* @param string $type Example: IWriter
- * @param string $location Example: PHPExcel/Writer/{0}.php
- * @param string $classname Example: PHPExcel_Writer_{0}
+ * @param string $location Example: PHPExcel/Writer/[0].php
+ * @param string $classname Example: PHPExcel_Writer_[0]
*/
public static function addSearchLocation($type = '', $location = '', $classname = '')
{
@@ -134,7 +134,7 @@
// Include class
foreach (self::$searchLocations as $searchLocation) {
if ($searchLocation['type'] == $searchType) {
- $className = str_replace('{0}', $writerType, $searchLocation['class']);
+ $className = str_replace('[0]', $writerType, $searchLocation['class']);
$instance = new $className($phpExcel);
if ($instance !== null) {
@@ -164,7 +164,7 @@
// Include class
foreach (self::$searchLocations as $searchLocation) {
if ($searchLocation['type'] == $searchType) {
- $className = str_replace('{0}', $readerType, $searchLocation['class']);
+ $className = str_replace('[0]', $readerType, $searchLocation['class']);
$instance = new $className();
if ($instance !== null) {
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Reader/Excel2003XML.php PHPExcel-1.8.2.new/Classes/PHPExcel/Reader/Excel2003XML.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Reader/Excel2003XML.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Reader/Excel2003XML.php 2023-06-03 17:17:14.883356816 +0900
@@ -689,7 +689,7 @@
$rowReference = $rowID;
}
// Bracketed R references are relative to the current row
- if ($rowReference{0} == '[') {
+ if ($rowReference[0] == '[') {
$rowReference = $rowID + trim($rowReference, '[]');
}
$columnReference = $cellReference[4][0];
@@ -698,7 +698,7 @@
$columnReference = $columnNumber;
}
// Bracketed C references are relative to the current column
- if ($columnReference{0} == '[') {
+ if ($columnReference[0] == '[') {
$columnReference = $columnNumber + trim($columnReference, '[]');
}
$A1CellReference = PHPExcel_Cell::stringFromColumnIndex($columnReference-1).$rowReference;
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Reader/Excel5/Escher.php PHPExcel-1.8.2.new/Classes/PHPExcel/Reader/Excel5/Escher.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Reader/Excel5/Escher.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Reader/Excel5/Escher.php 2023-06-03 17:40:17.925005808 +0900
@@ -280,16 +280,16 @@
$foDelay = PHPExcel_Reader_Excel5::getInt4d($recordData, 28);
// offset: 32; size: 1; unused1
- $unused1 = ord($recordData{32});
+ $unused1 = ord($recordData[32]);
// offset: 33; size: 1; size of nameData in bytes (including null terminator)
- $cbName = ord($recordData{33});
+ $cbName = ord($recordData[33]);
// offset: 34; size: 1; unused2
- $unused2 = ord($recordData{34});
+ $unused2 = ord($recordData[34]);
// offset: 35; size: 1; unused3
- $unused3 = ord($recordData{35});
+ $unused3 = ord($recordData[35]);
// offset: 36; size: $cbName; nameData
$nameData = substr($recordData, 36, $cbName);
@@ -331,7 +331,7 @@
}
// offset: var; size: 1; tag
- $tag = ord($recordData{$pos});
+ $tag = ord($recordData[$pos]);
$pos += 1;
// offset: var; size: var; the raw image data
@@ -372,7 +372,7 @@
}
// offset: var; size: 1; tag
- $tag = ord($recordData{$pos});
+ $tag = ord($recordData[$pos]);
$pos += 1;
// offset: var; size: var; the raw image data
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Reader/Excel5.php PHPExcel-1.8.2.new/Classes/PHPExcel/Reader/Excel5.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Reader/Excel5.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Reader/Excel5.php 2023-06-03 17:43:47.800201630 +0900
@@ -1925,7 +1925,7 @@
// offset: 0; size: 2; 0 = base 1900, 1 = base 1904
PHPExcel_Shared_Date::setExcelCalendar(PHPExcel_Shared_Date::CALENDAR_WINDOWS_1900);
- if (ord($recordData{0}) == 1) {
+ if (ord($recordData[0]) == 1) {
PHPExcel_Shared_Date::setExcelCalendar(PHPExcel_Shared_Date::CALENDAR_MAC_1904);
}
}
@@ -1988,7 +1988,7 @@
}
// offset: 10; size: 1; underline type
- $underlineType = ord($recordData{10});
+ $underlineType = ord($recordData[10]);
switch ($underlineType) {
case 0x00:
break; // no underline
@@ -2125,7 +2125,7 @@
// offset: 6; size: 1; Alignment and text break
// bit 2-0, mask 0x07; horizontal alignment
- $horAlign = (0x07 & ord($recordData{6})) >> 0;
+ $horAlign = (0x07 & ord($recordData[6])) >> 0;
switch ($horAlign) {
case 0:
$objStyle->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_GENERAL);
@@ -2150,7 +2150,7 @@
break;
}
// bit 3, mask 0x08; wrap text
- $wrapText = (0x08 & ord($recordData{6})) >> 3;
+ $wrapText = (0x08 & ord($recordData[6])) >> 3;
switch ($wrapText) {
case 0:
$objStyle->getAlignment()->setWrapText(false);
@@ -2160,7 +2160,7 @@
break;
}
// bit 6-4, mask 0x70; vertical alignment
- $vertAlign = (0x70 & ord($recordData{6})) >> 4;
+ $vertAlign = (0x70 & ord($recordData[6])) >> 4;
switch ($vertAlign) {
case 0:
$objStyle->getAlignment()->setVertical(PHPExcel_Style_Alignment::VERTICAL_TOP);
@@ -2178,7 +2178,7 @@
if ($this->version == self::XLS_BIFF8) {
// offset: 7; size: 1; XF_ROTATION: Text rotation angle
- $angle = ord($recordData{7});
+ $angle = ord($recordData[7]);
$rotation = 0;
if ($angle <= 90) {
$rotation = $angle;
@@ -2191,11 +2191,11 @@
// offset: 8; size: 1; Indentation, shrink to cell size, and text direction
// bit: 3-0; mask: 0x0F; indent level
- $indent = (0x0F & ord($recordData{8})) >> 0;
+ $indent = (0x0F & ord($recordData[8])) >> 0;
$objStyle->getAlignment()->setIndent($indent);
// bit: 4; mask: 0x10; 1 = shrink content to fit into cell
- $shrinkToFit = (0x10 & ord($recordData{8})) >> 4;
+ $shrinkToFit = (0x10 & ord($recordData[8])) >> 4;
switch ($shrinkToFit) {
case 0:
$objStyle->getAlignment()->setShrinkToFit(false);
@@ -2275,7 +2275,7 @@
// BIFF5
// offset: 7; size: 1; Text orientation and flags
- $orientationAndFlags = ord($recordData{7});
+ $orientationAndFlags = ord($recordData[7]);
// bit: 1-0; mask: 0x03; XF_ORIENTATION: Text orientation
$xfOrientation = (0x03 & $orientationAndFlags) >> 0;
@@ -2399,7 +2399,7 @@
$xclrValue = substr($extData, 4, 4); // color value (value based on color type)
if ($xclfType == 2) {
- $rgb = sprintf('%02X%02X%02X', ord($xclrValue{0}), ord($xclrValue{1}), ord($xclrValue{2}));
+ $rgb = sprintf('%02X%02X%02X', ord($xclrValue[0]), ord($xclrValue[1]), ord($xclrValue[2]));
// modify the relevant style property
if (isset($this->mapCellXfIndex[$ixfe])) {
@@ -2414,7 +2414,7 @@
$xclrValue = substr($extData, 4, 4); // color value (value based on color type)
if ($xclfType == 2) {
- $rgb = sprintf('%02X%02X%02X', ord($xclrValue{0}), ord($xclrValue{1}), ord($xclrValue{2}));
+ $rgb = sprintf('%02X%02X%02X', ord($xclrValue[0]), ord($xclrValue[1]), ord($xclrValue[2]));
// modify the relevant style property
if (isset($this->mapCellXfIndex[$ixfe])) {
@@ -2429,7 +2429,7 @@
$xclrValue = substr($extData, 4, 4); // color value (value based on color type)
if ($xclfType == 2) {
- $rgb = sprintf('%02X%02X%02X', ord($xclrValue{0}), ord($xclrValue{1}), ord($xclrValue{2}));
+ $rgb = sprintf('%02X%02X%02X', ord($xclrValue[0]), ord($xclrValue[1]), ord($xclrValue[2]));
// modify the relevant style property
if (isset($this->mapCellXfIndex[$ixfe])) {
@@ -2444,7 +2444,7 @@
$xclrValue = substr($extData, 4, 4); // color value (value based on color type)
if ($xclfType == 2) {
- $rgb = sprintf('%02X%02X%02X', ord($xclrValue{0}), ord($xclrValue{1}), ord($xclrValue{2}));
+ $rgb = sprintf('%02X%02X%02X', ord($xclrValue[0]), ord($xclrValue[1]), ord($xclrValue[2]));
// modify the relevant style property
if (isset($this->mapCellXfIndex[$ixfe])) {
@@ -2459,7 +2459,7 @@
$xclrValue = substr($extData, 4, 4); // color value (value based on color type)
if ($xclfType == 2) {
- $rgb = sprintf('%02X%02X%02X', ord($xclrValue{0}), ord($xclrValue{1}), ord($xclrValue{2}));
+ $rgb = sprintf('%02X%02X%02X', ord($xclrValue[0]), ord($xclrValue[1]), ord($xclrValue[2]));
// modify the relevant style property
if (isset($this->mapCellXfIndex[$ixfe])) {
@@ -2474,7 +2474,7 @@
$xclrValue = substr($extData, 4, 4); // color value (value based on color type)
if ($xclfType == 2) {
- $rgb = sprintf('%02X%02X%02X', ord($xclrValue{0}), ord($xclrValue{1}), ord($xclrValue{2}));
+ $rgb = sprintf('%02X%02X%02X', ord($xclrValue[0]), ord($xclrValue[1]), ord($xclrValue[2]));
// modify the relevant style property
if (isset($this->mapCellXfIndex[$ixfe])) {
@@ -2489,7 +2489,7 @@
$xclrValue = substr($extData, 4, 4); // color value (value based on color type)
if ($xclfType == 2) {
- $rgb = sprintf('%02X%02X%02X', ord($xclrValue{0}), ord($xclrValue{1}), ord($xclrValue{2}));
+ $rgb = sprintf('%02X%02X%02X', ord($xclrValue[0]), ord($xclrValue[1]), ord($xclrValue[2]));
// modify the relevant style property
if (isset($this->mapCellXfIndex[$ixfe])) {
@@ -2504,7 +2504,7 @@
$xclrValue = substr($extData, 4, 4); // color value (value based on color type)
if ($xclfType == 2) {
- $rgb = sprintf('%02X%02X%02X', ord($xclrValue{0}), ord($xclrValue{1}), ord($xclrValue{2}));
+ $rgb = sprintf('%02X%02X%02X', ord($xclrValue[0]), ord($xclrValue[1]), ord($xclrValue[2]));
// modify the relevant style property
if (isset($this->mapCellXfIndex[$ixfe])) {
@@ -2546,7 +2546,7 @@
if ($isBuiltIn) {
// offset: 2; size: 1; identifier for built-in style
- $builtInId = ord($recordData{2});
+ $builtInId = ord($recordData[2]);
switch ($builtInId) {
case 0x00:
@@ -2611,7 +2611,7 @@
$this->pos += 4 + $length;
// offset: 4; size: 1; sheet state
- switch (ord($recordData{4})) {
+ switch (ord($recordData[4])) {
case 0x00:
$sheetState = PHPExcel_Worksheet::SHEETSTATE_VISIBLE;
break;
@@ -2627,7 +2627,7 @@
}
// offset: 5; size: 1; sheet type
- $sheetType = ord($recordData{5});
+ $sheetType = ord($recordData[5]);
// offset: 6; size: var; sheet name
if ($this->version == self::XLS_BIFF8) {
@@ -2805,7 +2805,7 @@
// offset: 2; size: 1; keyboard shortcut
// offset: 3; size: 1; length of the name (character count)
- $nlen = ord($recordData{3});
+ $nlen = ord($recordData[3]);
// offset: 4; size: 2; size of the formula data (it can happen that this is zero)
// note: there can also be additional data, this is not included in $flen
@@ -2888,7 +2888,7 @@
$pos += 2;
// option flags
- $optionFlags = ord($recordData{$pos});
+ $optionFlags = ord($recordData[$pos]);
++$pos;
// bit: 0; mask: 0x01; 0 = compressed; 1 = uncompressed
@@ -2955,7 +2955,7 @@
// repeated option flags
// OpenOffice.org documentation 5.21
- $option = ord($recordData{$pos});
+ $option = ord($recordData[$pos]);
++$pos;
if ($isCompressed && ($option == 0)) {
@@ -2977,7 +2977,7 @@
// this fragment compressed
$len = min($charsLeft, $limitpos - $pos);
for ($j = 0; $j < $len; ++$j) {
- $retstr .= $recordData{$pos + $j} . chr(0);
+ $retstr .= $recordData[$pos + $j] . chr(0);
}
$charsLeft -= $len;
$isCompressed = false;
@@ -3883,7 +3883,7 @@
// We can apparently not rely on $isPartOfSharedFormula. Even when $isPartOfSharedFormula = true
// the formula data may be ordinary formula data, therefore we need to check
// explicitly for the tExp token (0x01)
- $isPartOfSharedFormula = $isPartOfSharedFormula && ord($formulaStructure{2}) == 0x01;
+ $isPartOfSharedFormula = $isPartOfSharedFormula && ord($formulaStructure[2]) == 0x01;
if ($isPartOfSharedFormula) {
// part of shared formula which means there will be a formula with a tExp token and nothing else
@@ -3906,7 +3906,7 @@
$xfIndex = self::getInt2d($recordData, 4);
// offset: 6; size: 8; result of the formula
- if ((ord($recordData{6}) == 0) && (ord($recordData{12}) == 255) && (ord($recordData{13}) == 255)) {
+ if ((ord($recordData[6]) == 0) && (ord($recordData[12]) == 255) && (ord($recordData[13]) == 255)) {
// String formula. Result follows in appended STRING record
$dataType = PHPExcel_Cell_DataType::TYPE_STRING;
@@ -3918,21 +3918,21 @@
// read STRING record
$value = $this->readString();
- } elseif ((ord($recordData{6}) == 1)
- && (ord($recordData{12}) == 255)
- && (ord($recordData{13}) == 255)) {
+ } elseif ((ord($recordData[6]) == 1)
+ && (ord($recordData[12]) == 255)
+ && (ord($recordData[13]) == 255)) {
// Boolean formula. Result is in +2; 0=false, 1=true
$dataType = PHPExcel_Cell_DataType::TYPE_BOOL;
- $value = (bool) ord($recordData{8});
- } elseif ((ord($recordData{6}) == 2)
- && (ord($recordData{12}) == 255)
- && (ord($recordData{13}) == 255)) {
+ $value = (bool) ord($recordData[8]);
+ } elseif ((ord($recordData[6]) == 2)
+ && (ord($recordData[12]) == 255)
+ && (ord($recordData[13]) == 255)) {
// Error formula. Error code is in +2
$dataType = PHPExcel_Cell_DataType::TYPE_ERROR;
- $value = PHPExcel_Reader_Excel5_ErrorCode::lookup(ord($recordData{8}));
- } elseif ((ord($recordData{6}) == 3)
- && (ord($recordData{12}) == 255)
- && (ord($recordData{13}) == 255)) {
+ $value = PHPExcel_Reader_Excel5_ErrorCode::lookup(ord($recordData[8]));
+ } elseif ((ord($recordData[6]) == 3)
+ && (ord($recordData[12]) == 255)
+ && (ord($recordData[13]) == 255)) {
// Formula result is a null string
$dataType = PHPExcel_Cell_DataType::TYPE_NULL;
$value = '';
@@ -3996,7 +3996,7 @@
// offset: 6, size: 1; not used
// offset: 7, size: 1; number of existing FORMULA records for this shared formula
- $no = ord($recordData{7});
+ $no = ord($recordData[7]);
// offset: 8, size: var; Binary token array of the shared formula
$formula = substr($recordData, 8);
@@ -4062,10 +4062,10 @@
$xfIndex = self::getInt2d($recordData, 4);
// offset: 6; size: 1; the boolean value or error value
- $boolErr = ord($recordData{6});
+ $boolErr = ord($recordData[6]);
// offset: 7; size: 1; 0=boolean; 1=error
- $isError = ord($recordData{7});
+ $isError = ord($recordData[7]);
$cell = $this->phpSheet->getCell($columnString . ($row + 1));
switch ($isError) {
@@ -4447,7 +4447,7 @@
if (!$this->readDataOnly) {
// offset: 0; size: 1; pane identifier
- $paneId = ord($recordData{0});
+ $paneId = ord($recordData[0]);
// offset: 1; size: 2; index to row of the active cell
$r = self::getInt2d($recordData, 1);
@@ -4598,9 +4598,9 @@
$hyperlinkType = 'UNC';
} elseif (!$isFileLinkOrUrl) {
$hyperlinkType = 'workbook';
- } elseif (ord($recordData{$offset}) == 0x03) {
+ } elseif (ord($recordData[$offset]) == 0x03) {
$hyperlinkType = 'local';
- } elseif (ord($recordData{$offset}) == 0xE0) {
+ } elseif (ord($recordData[$offset]) == 0xE0) {
$hyperlinkType = 'URL';
}
@@ -6886,10 +6886,10 @@
$lr = self::getInt2d($subData, 2) + 1;
// offset: 4; size: 1; index to first column
- $fc = ord($subData{4});
+ $fc = ord($subData[4]);
// offset: 5; size: 1; index to last column
- $lc = ord($subData{5});
+ $lc = ord($subData[5]);
// check values
if ($fr > $lr || $fc > $lc) {
@@ -7294,13 +7294,13 @@
private static function readRGB($rgb)
{
// offset: 0; size 1; Red component
- $r = ord($rgb{0});
+ $r = ord($rgb[0]);
// offset: 1; size: 1; Green component
- $g = ord($rgb{1});
+ $g = ord($rgb[1]);
// offset: 2; size: 1; Blue component
- $b = ord($rgb{2});
+ $b = ord($rgb[2]);
// HEX notation, e.g. 'FF00FC'
$rgb = sprintf('%02X%02X%02X', $r, $g, $b);
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Reader/SYLK.php PHPExcel-1.8.2.new/Classes/PHPExcel/Reader/SYLK.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Reader/SYLK.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Reader/SYLK.php 2023-06-03 17:40:30.997267148 +0900
@@ -161,7 +161,7 @@
if ($dataType == 'C') {
// Read cell value data
foreach ($rowData as $rowDatum) {
- switch ($rowDatum{0}) {
+ switch ($rowDatum[0]) {
case 'C':
case 'X':
$columnIndex = substr($rowDatum, 1) - 1;
@@ -249,7 +249,7 @@
if ($dataType == 'P') {
$formatArray = array();
foreach ($rowData as $rowDatum) {
- switch ($rowDatum{0}) {
+ switch ($rowDatum[0]) {
case 'P':
$formatArray['numberformat']['code'] = str_replace($fromFormats, $toFormats, substr($rowDatum, 1));
break;
@@ -263,7 +263,7 @@
case 'S':
$styleSettings = substr($rowDatum, 1);
for ($i=0; $i<strlen($styleSettings); ++$i) {
- switch ($styleSettings{$i}) {
+ switch ($styleSettings[$i]) {
case 'I':
$formatArray['font']['italic'] = true;
break;
@@ -293,7 +293,7 @@
$hasCalculatedValue = false;
$cellData = $cellDataFormula = '';
foreach ($rowData as $rowDatum) {
- switch ($rowDatum{0}) {
+ switch ($rowDatum[0]) {
case 'C':
case 'X':
$column = substr($rowDatum, 1);
@@ -327,7 +327,7 @@
$rowReference = $row;
}
// Bracketed R references are relative to the current row
- if ($rowReference{0} == '[') {
+ if ($rowReference[0] == '[') {
$rowReference = $row + trim($rowReference, '[]');
}
$columnReference = $cellReference[4][0];
@@ -336,7 +336,7 @@
$columnReference = $column;
}
// Bracketed C references are relative to the current column
- if ($columnReference{0} == '[') {
+ if ($columnReference[0] == '[') {
$columnReference = $column + trim($columnReference, '[]');
}
$A1CellReference = PHPExcel_Cell::stringFromColumnIndex($columnReference-1).$rowReference;
@@ -366,7 +366,7 @@
$formatStyle = $columnWidth = $styleSettings = '';
$styleData = array();
foreach ($rowData as $rowDatum) {
- switch ($rowDatum{0}) {
+ switch ($rowDatum[0]) {
case 'C':
case 'X':
$column = substr($rowDatum, 1);
@@ -384,7 +384,7 @@
case 'S':
$styleSettings = substr($rowDatum, 1);
for ($i=0; $i<strlen($styleSettings); ++$i) {
- switch ($styleSettings{$i}) {
+ switch ($styleSettings[$i]) {
case 'I':
$styleData['font']['italic'] = true;
break;
@@ -433,7 +433,7 @@
}
} else {
foreach ($rowData as $rowDatum) {
- switch ($rowDatum{0}) {
+ switch ($rowDatum[0]) {
case 'C':
case 'X':
$column = substr($rowDatum, 1);
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/ReferenceHelper.php PHPExcel-1.8.2.new/Classes/PHPExcel/ReferenceHelper.php
--- PHPExcel-1.8.2/Classes/PHPExcel/ReferenceHelper.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/ReferenceHelper.php 2023-06-03 17:17:14.918357515 +0900
@@ -881,8 +881,8 @@
list($newColumn, $newRow) = PHPExcel_Cell::coordinateFromString($pCellReference);
// Verify which parts should be updated
- $updateColumn = (($newColumn{0} != '$') && ($beforeColumn{0} != '$') && (PHPExcel_Cell::columnIndexFromString($newColumn) >= PHPExcel_Cell::columnIndexFromString($beforeColumn)));
- $updateRow = (($newRow{0} != '$') && ($beforeRow{0} != '$') && $newRow >= $beforeRow);
+ $updateColumn = (($newColumn[0] != '$') && ($beforeColumn[0] != '$') && (PHPExcel_Cell::columnIndexFromString($newColumn) >= PHPExcel_Cell::columnIndexFromString($beforeColumn)));
+ $updateRow = (($newRow[0] != '$') && ($beforeRow[0] != '$') && $newRow >= $beforeRow);
// Create new column reference
if ($updateColumn) {
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Shared/OLE.php PHPExcel-1.8.2.new/Classes/PHPExcel/Shared/OLE.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Shared/OLE.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Shared/OLE.php 2023-06-03 17:43:59.457434677 +0900
@@ -443,7 +443,7 @@
{
$rawname = '';
for ($i = 0; $i < strlen($ascii); ++$i) {
- $rawname .= $ascii{$i} . "\x00";
+ $rawname .= $ascii[$i] . "\x00";
}
return $rawname;
}
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Shared/String.php PHPExcel-1.8.2.new/Classes/PHPExcel/Shared/String.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Shared/String.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Shared/String.php 2023-06-03 17:44:08.941624286 +0900
@@ -523,8 +523,8 @@
if (strlen($str) < 2) {
return $str;
}
- $c0 = ord($str{0});
- $c1 = ord($str{1});
+ $c0 = ord($str[0]);
+ $c1 = ord($str[1]);
if ($c0 == 0xfe && $c1 == 0xff) {
$str = substr($str, 2);
} elseif ($c0 == 0xff && $c1 == 0xfe) {
@@ -535,11 +535,11 @@
$newstr = '';
for ($i=0; $i<$len; $i+=2) {
if ($bom_be) {
- $val = ord($str{$i}) << 4;
- $val += ord($str{$i+1});
+ $val = ord($str[$i]) << 4;
+ $val += ord($str[$i+1]);
} else {
- $val = ord($str{$i+1}) << 4;
- $val += ord($str{$i});
+ $val = ord($str[$i+1]) << 4;
+ $val += ord($str[$i]);
}
$newstr .= ($val == 0x228) ? "\n" : chr($val);
}
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Shared/ZipStreamWrapper.php PHPExcel-1.8.2.new/Classes/PHPExcel/Shared/ZipStreamWrapper.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Shared/ZipStreamWrapper.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Shared/ZipStreamWrapper.php 2023-06-03 17:17:14.922357595 +0900
@@ -76,7 +76,7 @@
public function stream_open($path, $mode, $options, &$opened_path)
{
// Check for mode
- if ($mode{0} != 'r') {
+ if ($mode[0] != 'r') {
throw new PHPExcel_Reader_Exception('Mode ' . $mode . ' is not supported. Only read mode is supported.');
}
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Worksheet/AutoFilter.php PHPExcel-1.8.2.new/Classes/PHPExcel/Worksheet/AutoFilter.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Worksheet/AutoFilter.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Worksheet/AutoFilter.php 2023-06-03 17:17:14.927357695 +0900
@@ -717,7 +717,7 @@
);
} else {
// Date based
- if ($dynamicRuleType{0} == 'M' || $dynamicRuleType{0} == 'Q') {
+ if ($dynamicRuleType[0] == 'M' || $dynamicRuleType[0] == 'Q') {
// Month or Quarter
sscanf($dynamicRuleType, '%[A-Z]%d', $periodType, $period);
if ($periodType == 'M') {
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Writer/Excel5/Parser.php PHPExcel-1.8.2.new/Classes/PHPExcel/Writer/Excel5/Parser.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Writer/Excel5/Parser.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Writer/Excel5/Parser.php 2023-06-03 17:44:23.949924332 +0900
@@ -1020,7 +1020,7 @@
$col = 0;
$col_ref_length = strlen($col_ref);
for ($i = 0; $i < $col_ref_length; ++$i) {
- $col += (ord($col_ref{$i}) - 64) * pow(26, $expn);
+ $col += (ord($col_ref[$i]) - 64) * pow(26, $expn);
--$expn;
}
@@ -1042,28 +1042,28 @@
$formula_length = strlen($this->formula);
// eat up white spaces
if ($i < $formula_length) {
- while ($this->formula{$i} == " ") {
+ while ($this->formula[$i] == " ") {
++$i;
}
if ($i < ($formula_length - 1)) {
- $this->lookAhead = $this->formula{$i+1};
+ $this->lookAhead = $this->formula[$i+1];
}
$token = '';
}
while ($i < $formula_length) {
- $token .= $this->formula{$i};
+ $token .= $this->formula[$i];
if ($i < ($formula_length - 1)) {
- $this->lookAhead = $this->formula{$i+1};
+ $this->lookAhead = $this->formula[$i+1];
} else {
$this->lookAhead = '';
}
if ($this->match($token) != '') {
//if ($i < strlen($this->formula) - 1) {
- // $this->lookAhead = $this->formula{$i+1};
+ // $this->lookAhead = $this->formula[$i+1];
//}
$this->currentCharacter = $i + 1;
$this->currentToken = $token;
@@ -1071,7 +1071,7 @@
}
if ($i < ($formula_length - 2)) {
- $this->lookAhead = $this->formula{$i+2};
+ $this->lookAhead = $this->formula[$i+2];
} else { // if we run out of characters lookAhead becomes empty
$this->lookAhead = '';
}
@@ -1172,7 +1172,7 @@
{
$this->currentCharacter = 0;
$this->formula = $formula;
- $this->lookAhead = isset($formula{1}) ? $formula{1} : '';
+ $this->lookAhead = isset($formula[1]) ? $formula[1] : '';
$this->advance();
$this->parseTree = $this->condition();
return true;
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Writer/Excel5/Workbook.php PHPExcel-1.8.2.new/Classes/PHPExcel/Writer/Excel5/Workbook.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Writer/Excel5/Workbook.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Writer/Excel5/Workbook.php 2023-06-03 17:17:14.934357835 +0900
@@ -664,7 +664,7 @@
$formulaData = $this->parser->toReversePolish();
// make sure tRef3d is of type tRef3dR (0x3A)
- if (isset($formulaData{0}) and ($formulaData{0} == "\x7A" or $formulaData{0} == "\x5A")) {
+ if (isset($formulaData[0]) and ($formulaData[0] == "\x7A" or $formulaData[0] == "\x5A")) {
$formulaData = "\x3A" . substr($formulaData, 1);
}
diff '--color=auto' -bur PHPExcel-1.8.2/Classes/PHPExcel/Writer/Excel5/Worksheet.php PHPExcel-1.8.2.new/Classes/PHPExcel/Writer/Excel5/Worksheet.php
--- PHPExcel-1.8.2/Classes/PHPExcel/Writer/Excel5/Worksheet.php 2018-11-23 08:07:24.000000000 +0900
+++ PHPExcel-1.8.2.new/Classes/PHPExcel/Writer/Excel5/Worksheet.php 2023-06-03 17:17:14.962358395 +0900
@@ -876,7 +876,7 @@
$unknown = 0x0000; // Must be zero
// Strip the '=' or '@' sign at the beginning of the formula string
- if ($formula{0} == '=') {
+ if ($formula[0] == '=') {
$formula = substr($formula, 1);
} else {
// Error handling
@eru
Copy link
Author

eru commented Jun 3, 2023

$ curl -LOJ https://github.com/PHPOffice/PHPExcel/archive/refs/tags/1.8.2.tar.gz
$ tar xvzf PHPExcel-1.8.2.tar.gz
$ patch -p0 < PHPExcel-1.8.2-php8.patch

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment