PHP_XLSXWriter icon indicating copy to clipboard operation
PHP_XLSXWriter copied to clipboard

Lightweight XLSX Excel Spreadsheet Writer in PHP

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

Actually the issue isn't $writer->writeToStdOut() but following example.php did not produce a successful xlsx file. At least on my platform (linux server running apache) and browser (brave) I needed to...

How do you add a hyperlink to a cell value? I've tried doing it the HTML way into a column of type text but that is just showing the raw...

Is there a possibility to embed an image into the excel sheet?

I'm trying to integrate [PHP_XLSXWriter] (https://github.com/mk-j/PHP_XLSXWriter) with Code Igniter Here's my controller source code `public function ToExcel(){ include_once APPPATH.'/third_party/xlsxwriter.class.php'; $filename = "report-".date('d-m-Y-H-i-s').".xlsx"; header('Content-disposition: attachment; filename="'.XLSXWriter::sanitize_filename($filename).'"'); header("Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); header('Content-Transfer-Encoding: binary'); header('Cache-Control:...

How can I use validation in cell like True/False?

Hello, When an excel file is opened on Google Sheets, we can see a double equal symbol for cells that contain a formula. This error is known #213 and having...

实测300万数据使用内存3G多

Hi, php 7 i receive in log notice: PHP Notice: tempnam(): file created in the system's temporary directory in /var/www/______/www/vendor/mk-j/php_xlsxwriter/xlsxwriter.class.php on line 59

This fix may not work properly when writing out formula's but as I am only exporting data, it works for me! in the writeCell( function ... } elseif (/* modified...