jasonrogena / jasonrogena/php-excel-reader

raw data not stored on store_extended_info = false

Open
#145 0 comments 0 reactions 0 assignees View on GitHub
auto-migrated Priority-Medium Type-Defect
Dominant language
PHP
Stars
1
Forks
0
PR merge metrics
No merged PRs in 30d

Description

```
I suggest to not handle the raw data as extended_info. The raw data is not
available on formated cell if store_extended_info is deactivated.

On line 1693 change the code to this:

if ($info) {
foreach ($info as $key => $val)
{
if($this->store_extended_info == true || $key == "raw")
{
$this->sheets[$this->sn]['cellsInfo'][$row + $this->_rowoffset][$col + $this->_coloffset][$key] = $val;
}
}
}

```

Original issue reported on code.google.com by `philippm...@gmail.com` on 9 Apr 2012 at 10:25

Contributor guide

No contributing guide indexed for this repository

Research direction

Start at line 1693, where the cell information is stored, and inspect how store_extended_info controls the raw entry. Done means raw data remains available on formatted cells when store_extended_info is false, while other extended information remains conditional.

Written by the indexing model from the issue text.

Assessment

Tech stack
php
Domain
backend
Issue type
Bug
Difficulty
1/5
Estimated time
Under an hour
Activity status
Stale
Clarity
Clearly specified
Newbie friendliness
45/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.