|
@@ 3060-3068 (lines=9) @@
|
| 3057 |
|
$sheet2 = $sheet1; |
| 3058 |
|
} |
| 3059 |
|
if ($sheet1 == $sheet2) { |
| 3060 |
|
if ($operand1Data['reference'] === NULL) { |
| 3061 |
|
if ((trim($operand1Data['value']) != '') && (is_numeric($operand1Data['value']))) { |
| 3062 |
|
$operand1Data['reference'] = $pCell->getColumn().$operand1Data['value']; |
| 3063 |
|
} elseif (trim($operand1Data['reference']) == '') { |
| 3064 |
|
$operand1Data['reference'] = $pCell->getCoordinate(); |
| 3065 |
|
} else { |
| 3066 |
|
$operand1Data['reference'] = $operand1Data['value'].$pCell->getRow(); |
| 3067 |
|
} |
| 3068 |
|
} |
| 3069 |
|
if ($operand2Data['reference'] === NULL) { |
| 3070 |
|
if ((trim($operand2Data['value']) != '') && (is_numeric($operand2Data['value']))) { |
| 3071 |
|
$operand2Data['reference'] = $pCell->getColumn().$operand2Data['value']; |
|
@@ 3069-3077 (lines=9) @@
|
| 3066 |
|
$operand1Data['reference'] = $operand1Data['value'].$pCell->getRow(); |
| 3067 |
|
} |
| 3068 |
|
} |
| 3069 |
|
if ($operand2Data['reference'] === NULL) { |
| 3070 |
|
if ((trim($operand2Data['value']) != '') && (is_numeric($operand2Data['value']))) { |
| 3071 |
|
$operand2Data['reference'] = $pCell->getColumn().$operand2Data['value']; |
| 3072 |
|
} elseif (trim($operand2Data['reference']) == '') { |
| 3073 |
|
$operand2Data['reference'] = $pCell->getCoordinate(); |
| 3074 |
|
} else { |
| 3075 |
|
$operand2Data['reference'] = $operand2Data['value'].$pCell->getRow(); |
| 3076 |
|
} |
| 3077 |
|
} |
| 3078 |
|
|
| 3079 |
|
$oData = array_merge(explode(':',$operand1Data['reference']),explode(':',$operand2Data['reference'])); |
| 3080 |
|
$oCol = $oRow = array(); |