php-ext-xlswriter icon indicating copy to clipboard operation
php-ext-xlswriter copied to clipboard

🚀 PHP Extension for creating and reader XLSX files.

Results 54 php-ext-xlswriter issues
Sort by recently updated
recently updated
newest added

>>> bt #0 __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:51 #1 0x00007f3b2ecc27f1 in __GI_abort () at abort.c:79 #2 0x00007f3b2ed0b837 in __libc_message (action=action@entry=(do_abort | do_backtrace), fmt=fmt@entry=0x7f3b2ee38869 "*** %s ***: %s terminated\n") at ../sysdeps/posix/libc_fatal.c:181 #3...

#430 php-fpm 没有error 级别日志 2023-04-28 10:09:01 [28-Apr-2023 02:09:01] NOTICE: fpm is running, pid 1 2023-04-28 10:09:01 [28-Apr-2023 02:09:01] NOTICE: ready to handle connections 2023-04-28 10:09:17 [28-Apr-2023 02:09:17] WARNING: [pool www]...

1:图片可以嵌入单元格底部 或者 悬浮于单元格上部 2:支持图片在单元格的中对齐方式

I cannot set font for cells with format and formatHandler. ```php $excel = new \Vtiful\Kernel\Excel(['path' => "/tmp/"]); $excel->fileName('new.xlsx','sheet1'); $format = new \Vtiful\Kernel\Format($excel->getHandle()); $style = $format->font("Arial")->fontSize(13)->toResource(); $excel->insertText(0,0,123456789,"#,##0",$style)// Calibri ->insertText(0,1,123456789,null,$style)// Arial ->insertText(1,0,"123456789","",$style)//...

Hi! Is it possible to make collapsible rows now? I need something like this ![image](https://user-images.githubusercontent.com/32381310/213994469-28383d0f-eba2-456e-81fc-8f9c3ec21c86.png)

```php $config = ['path' => '/']; $excel = new \Vtiful\Kernel\Excel($config); $fileObject = $excel->constMemory('test.xlsx', '内存占用', false); for ($index = 0; $index < 10000; $index++) { for ($column = 0; $column <...

如何在程序中获取PHP-Xlswriter的异常码? 代码: try { $xlsxObject = new \Vtiful\Kernel\Excel($config); // Init File $fileObject = $xlsxObject->constMemory($fileName); $fileObject->header($header_row) ->data($DateRangeRow); } catch(Exception $e) { $e->getCode(); } 使用$e->getCode()可以获取到吗?

I am pleased to announce that this extension is now compiled for Windows by the PHP Extension Repository site. You can download the DLLs on the extension page: https://phpext.phptools.online/extension/file-formats/xlswriter-324 If...

I have to convert excel file to html code/file. Does this library support the same functionality ?