PhpSpreadsheet
PhpSpreadsheet copied to clipboard
A pure PHP library for reading and writing spreadsheet files
This is: ``` - [ ] a bugfix - [x] a new feature - [x] refactoring - [x] additional unit tests ``` Checklist: - [x] Changes are covered by unit...
I found out that autosizing all columns in presence of merged cell really slow down xlsx creation. I made some try using the same script (7 columns and 700 rows)...
I have try this method to don't remove the zero (0) ``` public function columnFormats(): array { return [ 'A' => NumberFormat::FORMAT_NUMBER, 'B' => NumberFormat::FORMAT_TEXT, 'C' => NumberFormat::FORMAT_NUMBER, ]; }...
This is: ``` - [X] a bug report - [ ] a feature request - [ ] **not** a usage question (ask them on https://stackoverflow.com/questions/tagged/phpspreadsheet or https://gitter.im/PHPOffice/PhpSpreadsheet) ``` ### What...
This is: ``` - [x] a bug report ``` ### What is the expected behavior? Successful file loading with drawnings (pasted images) for next processing. ### What is the current...
Fix #2732, which see for details. Solution suggested by @odan. This is: ``` - [ ] a bugfix - [ ] a new feature - [x] Scrutinizer workaround ``` Checklist:...
This is: ``` - [x] a bug report - [ ] a feature request - [ ] **not** a usage question (ask them on https://stackoverflow.com/questions/tagged/phpspreadsheet or https://gitter.im/PHPOffice/PhpSpreadsheet) ``` ### What...
This is: ``` - [x] a bug report - [ ] a feature request - [ ] **not** a usage question (ask them on https://stackoverflow.com/questions/tagged/phpspreadsheet or https://gitter.im/PHPOffice/PhpSpreadsheet) ``` ### What...
This is: ``` - [ x ] a bug report - [ ] a feature request - [ ] **not** a usage question (ask them on https://stackoverflow.com/questions/tagged/phpspreadsheet or https://gitter.im/PHPOffice/PhpSpreadsheet) ```...
I open a xlsx file: ``` use PhpOffice\PhpSpreadsheet\IOFactory; $spreadsheet = IOFactory::load('temp.xlsx'); ``` The open success, but the following warnings occured: ```Warning: file_exists(): open_basedir restriction in effect. File(/xl/_rels/workbook.xml.rels) is not within...