-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpouziti.php
21 lines (18 loc) · 988 Bytes
/
pouziti.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
require 'CustomXLSX.php';
$arr_for_xlsx = [
[100, '', 50, '', '', '', '', '', 12, 1, 3], # šířka sloupce
['<b>tučně', '', '', '', '', '', '', '', '', '', ''],
['', '', '', '', '', '', '', '', '', '', ''],
['', '<b><ce>vycentrovaný tučný text', '', '', '', '', '', '<ce>vycentrovaný text', '', '', ''],
['', '<bg#FF0000>', '', '', '', '', '', '', '', '', ''],
['', '<bg#FF0000>', '', '<ce><b><bg#FF0000>červené pozadí, tučný text, vycentrovat', '', '', '', '', '', '', ''],
['', '<bg#FF0000>červené pozadí', '', '', '', '', '', '', '', '', ''],
['', '<bg#FF0000>', '', '', '', '', '', '', '', '', ''],
['', '<b><bg#FF0000>červené pozadí, tučný text', '', '', '', '', '', '', '', '', ''],
['', '', '', '', '<b>tučný text', '', '', '', '', '', ''],
['', '', '', '', '', '', '', '', '', '', ''],
['', '', '', '', '', '', '', '', '', '', ''],
];
$xlsx = new CustomXLSX();
$xlsx->Input($arr_for_xlsx);