MyTetra Share
Делитесь знаниями!
PHP Spreadsheet extension to the export excel file from excel template
Время создания: 09.10.2018 17:07
Раздел: PHP - Libraries
Запись: Velonski/mytetra-database/master/base/1539086870030oh955h4/text.html на raw.githubusercontent.com

PHP Excel Templator

Latest Stable Version Latest Unstable Version License Total Downloads Monthly Downloads Daily Downloads


Инструкция на русском языке (Russian)


It's PHP Spreadsheet extension that allows you to export excel files from an excel template. Using the extension you don’t need to create excel files from scratch using code, set styles and so on.


Demo screenshot:


Demo


Simple example

There is a simplest example of how this might look (using less code). Suppose we have an excel file with the following template variables:


Template


The code will be as follows:


use alhimik1986\PhpExcelTemplator\PhpExcelTemplator;


PhpExcelTemplator::saveToFile('./template.xlsx', './exported_file.xlsx', [

'{current_date}' => date('d-m-Y'),

'{department}' => 'Sales department',

]);

As a result, we get:


Exported file


Using this extension, we just create a template file with the styles we need and specify template variables in it. In the code, we just pass the parameters to template variables.


Features

We can insert several template variables in one table cell (if the data type is "string")

We can insert a one-dimensional array, in this case additional rows will be created in the table

We can insert a two-dimensional array, in this case the respective columns and rows are created in the table

By specifying the value in the cells, you can change the styles of these cells, even when inserting arrays

We can apply the same template on several sheets of the table

Features demo and usage examples are given in the folder "samples".


Restrictions:

Possible so-called side effects when using one-dimensional or two-dimensional arrays in one sheet. Especially when it is located asymmetrically. An example of side effects is also given in the folder "samples".

INSTALLATION:

$ composer require alhimik1986/php-excel-templator

Template variable naming rules

The rules can be any, but I can offer my recommendation for naming template variables:


{var_name} - for string values

[var_name] - for one-dimensional arrays

[[var_name]] - for two-dimensional arrays

How to insert a one-dimensional array, so that the table create columns, not rows?

To do this, instead of a one-dimensional array, insert a two-dimensional one as follows:


$param['[[var_name]]'] = [['text 1', 'text 2', 'text 3']];

Using setters

In the example above, the minimum code without setters was used. The data types (for example: a string, a one-dimensional array, or a two-dimensional array) in this code is automatically recognized and the necessary setter is chose. But if we want to use a specific setter, the same code will look like this:


use alhimik1986\PhpExcelTemplator\PhpExcelTemplator;

use alhimik1986\PhpExcelTemplator\params\ExcelParam;

use alhimik1986\PhpExcelTemplator\params\CallbackParam;

use alhimik1986\PhpExcelTemplator\setters\CellSetterStringValue;


$params = [

'{current_date}' => new ExcelParam(CellSetterStringValue::class, date('d-m-Y')),

'{department}' => new ExcelParam(CellSetterStringValue::class, 'Sales department'),

];

PhpExcelTemplator::saveToFile('./template.xlsx', './exported_file.xlsx', $params);

At the moment the extension has 3 kinds of setters:


CellSetterStringValue (for string values)

CellSetterArrayValue (for one-dimensional arrays)

CellSetterArray2DValue (for two-dimensional arrays)

You ask, what for specify setters explicitly?


First, because it's flexible: let's say you want to create your own setter with your own algorithms that eliminate the side effects, which I mentioned above.

Secondly, in each setter, you can pass a callback function in which we can change the styles of the inserted cells. For example, you need to highlight with bold font the employees who made the best sales in this month.

Examples of code that uses all kinds of setters are listed in the folder "samples".

Так же в этом разделе:
 
MyTetra Share v.0.59
Яндекс индекс цитирования