C:\xampp\htdocs\landing\wp-content\plugins\wpforms-lite\vendor\mk-j\php_xlsxwriter\example-cli.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
include_once("xlsxwriter.class.php");
ini_set('display_errors'0);
ini_set('log_errors'1);
error_reporting(E_ALL & ~E_NOTICE);

$filename "example.xlsx";

$rows = array(
    array(
'2003','1','-50.5','2010-01-01 23:00:00','2012-12-31 23:00:00'),
    array(
'2003','=B1''23.5','2010-01-01 00:00:00','2012-12-31 00:00:00'),
);

$writer = new XLSXWriter();
$writer->setAuthor('Some Author'); 
foreach(
$rows as $row)
    
$writer->writeSheetRow('Sheet1'$row);

$writer->writeToFile('example.xlsx');
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586