Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Commulative update (Pass options, php7 and more) #179

Open
wants to merge 46 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
ae5bba9
[+FEAT] Implement Seekable Iterator
paales Sep 23, 2013
8ec9ce2
Fixed LibreOffice date import
karlis-i Mar 18, 2016
3a844ec
Fixed LibreOffice date import
karlis-i Mar 18, 2016
9a03959
Merge pull request #1 from karlis-i/karlis-i-patch-1
karlis-i Mar 18, 2016
237ad9e
Fixed LibreOffice date import
karlis-i Mar 18, 2016
f48d859
XLS date fix (proper commit)
karlis-i Mar 18, 2016
adc4f60
LibreOffice date pattern fix
karlis-i Mar 18, 2016
6350aeb
Fixed LibreOffice date import
karlis-i Mar 18, 2016
1e9b801
SAF-58: Fixed bug where XLSX reader could not be found
ChrisJasperse Apr 1, 2016
ee26fe8
SAF-58: Unlimited shared string cache. Fixed bug where first XSLX wor…
ChrisJasperse Apr 1, 2016
7bc115e
Fixed bug where first XSLX worksheet was inaccessible (again)
ChrisJasperse Apr 1, 2016
9185a3d
Excel's "General" format (v.0.5.7)
pilsetnieks Jan 31, 2015
8424977
Excel's "General" format (v.0.5.7)
pilsetnieks Jan 31, 2015
3bee7dd
v.0.5.8.
pilsetnieks Jan 31, 2015
e1b2e40
v.0.5.8.
pilsetnieks Jan 31, 2015
4a28865
avoid undefined offset error
Apr 17, 2015
3880f98
v.0.5.9
pilsetnieks Apr 18, 2015
a982e9c
v.0.5.10.
pilsetnieks Apr 18, 2015
812bde0
v.0.5.11: XLSX text cells
pilsetnieks Apr 30, 2015
8842207
Fixed bug where first XSLX worksheet was inaccessible, after updating…
ChrisJasperse Apr 4, 2016
0333251
Merge branch 'feature/xslx'
ChrisJasperse Apr 4, 2016
ee473f1
SAF-58: Unlimited shared string cache.
ChrisJasperse Apr 4, 2016
d5e6cd9
SAF-58: Solve PHP7 Deprecation warnings
paales Apr 4, 2016
1c983ab
Another LibreOffice XLS fix
karlis-i Jun 2, 2016
1eb524d
Update composer.json
karlis-i Jun 2, 2016
577a35a
Update composer.json
karlis-i Jun 2, 2016
7fe9ff5
Get Sheet Id in various formats
TonisOrmisson Jun 8, 2016
90e9414
test
TonisOrmisson Nov 25, 2016
ecd2571
Fixed read for general format. If cell have general format, in her va…
aandolg Jan 10, 2018
e7c0887
merge pull request
Mar 9, 2018
7f2b823
Merge pull request #1 from karlis-i/master
fujaru Mar 9, 2018
0b7479a
Enabled FormatValue (number, date, etc) for xlsx
Mar 9, 2018
bb5a7b6
Merge branch 'master' of https://github.com/fujaru/spreadsheet-reader
Mar 9, 2018
c3ac66f
Merge branch 'fixed_read_for_general_format' of https://github.com/aa…
Mar 9, 2018
7e65933
Merge branch 'aandolg-fixed_read_for_general_format'
Mar 9, 2018
a3d8fc4
Merge remote-tracking branch 'upstream/master'
TonisOrmisson Jan 9, 2020
aa687f1
fix composer changes
TonisOrmisson Jan 9, 2020
ec3e81d
Fix use of `continue` statement under `switch case`
syncxplus Apr 16, 2020
54753a4
Fix currency format
syncxplus Jul 23, 2020
d0b3294
Don't format value as float if starts with 0
syncxplus Dec 1, 2020
c30ba56
ignore .idea
TonisOrmisson Apr 27, 2021
6c06bf2
Merge remote-tracking branch 'syncxplus/master'
TonisOrmisson Apr 27, 2021
a6420d4
Get options before creating handle
webportnoy Jul 4, 2022
e4d56f0
Example for options to readme
webportnoy Jul 4, 2022
bdfc946
XLSX: format value without Decimals
webportnoy Jul 22, 2022
3be2499
Apply encoding from Options for CSV files
webportnoy Aug 17, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
avoid undefined offset error
pascal authored and ChrisJasperse committed Apr 4, 2016
commit 4a28865482ffc0ffa48ca86dfcaa29f0a41e31b0
2 changes: 1 addition & 1 deletion SpreadsheetReader_XLSX.php
Original file line number Diff line number Diff line change
@@ -887,7 +887,7 @@ private function FormatValue($Value, $Index)
// Scaling
$Value = $Value / $Format['Scale'];

if ($Format['MinWidth'] && $Format['Decimals'])
if (!empty($Format['MinWidth']) && $Format['Decimals'])
{
if ($Format['Thousands'])
{