PHP_XLSXWriter icon indicating copy to clipboard operation
PHP_XLSXWriter copied to clipboard

Lightweight XLSX Excel Spreadsheet Writer in PHP

Results 128 PHP_XLSXWriter issues
Sort by recently updated
recently updated
newest added

In the documentation code given example not working! $sheet2header = array( 'col1-date'=>'date', 'col2-datetime'=>'datetime', 'col3-time'=>'time', 'custom-date1'=>'YYYY-MM-DD', 'custom-date2'=>'MM/DD/YYYY', 'custom-date3'=>'DD-MMM-YYYY HH:MM AM/PM', 'custom-date4'=>'MM/DD/YYYY HH:MM:SS', 'custom-date5'=>'YYYY-MM-DD HH:MM:SS', 'custom-date6'=>'YY MMMM', 'custom-date7'=>'QQ YYYY', 'custom-time1'=>'HH:MM', 'custom-time2'=>'HH:MM:SS', );...

DateTime is not working !

I have Excel with many sheets. When I create max. 240 pieces, it is ok, when there are more - Excel reports information that it is damaged - please help?

Hello and first of all: THANKS to your great work! I run into a problem and would ask, if there is any solution or somebody has a similiar problem. I...

I despair when inserting data into an existing Excel file. Is there a way to insert data into an existing Excel file?

Avoid PHP deprecation warning Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in xlsxwriter.class.php on line 767

How to format numeric float values with automatic number of decimal places (without rounding). I need column values "1", "1,2", "1,23", "1,234", "1,2345". Not rounding values "1,00", "1,20", "1,23", "1,23",...

affected version 0.39 Let's assume I want to instantiate XLSXWriter and then I want to change the tempDir. ```php $tempDir = ini_get('upload_tmp_dir'); $writer = new XLSXWriter(); $writer->setTempDir($tempDir); ... ``` The...