Download the PHP package threshold/php-excel without Composer
On this page you can find all versions of the php package threshold/php-excel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download threshold/php-excel
More information about threshold/php-excel
Files in threshold/php-excel
Package php-excel
Short Description PHP Library to only write and only XLSX files, in a fast and scalable way, box/spout package served as a basis.
License MIT
Informations about the package php-excel
threshold/php-excel
PHP Library to only write and only XLSX files, in a fast and scalable way, box/spout package served as a basis.
Installation
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Usage
Simple XLSX file generation with instant download:
Generating and saving a simple XLSX file to a given location:
Generate XLSX recursively, with only one file returned at the end:
If you have generated multiple worksheets, you can now sort them alphabetically or in reverse order.
If you want to generate multiple worksheets, instead of using an if to determine whether you are in the first loop and using the $writer->getCurrentSheet()
function to get the first worksheet, you can pass a second boolean parameter (the default is false) to the $writer->openToFile()
or $writer->openToBrowser()
functions, which will prevent the first worksheet from being created automatically. This way, you only need to use the $writer->addNewSheetAndMakeItCurrent()
function to add a worksheet in each loop.
If you generate Excel recursively and the submitted data determines the worksheet names each time, and it may happen that a worksheet with the same name needs to be created, you can use the $writer->getSheetByName()
function, which searches the worksheets by name. If it has already been created, it returns that worksheet and sets it as current, if it does not, it creates a new one with the specified name, sets it as current and returns with it. And at the end, you can sort them in order.
If you want to add a header to your worksheets, which you only need to add once to the worksheet, you can use the $sheet->isNew()
function as a check, which will only return true if this is the first time you've added the worksheet. If $writer->getSheetByName()
returns it because you created it before, it will return false.
All versions of php-excel with dependencies
ext-dom Version *
ext-iconv Version *
ext-libxml Version *
ext-mbstring Version *
ext-simplexml Version *
ext-xmlreader Version *
ext-zip Version *