EasyXLS Excel library can be used to export Excel files with PHP on Windows, Linux, Mac or other operating systems. The integration vary depending on the operating system or if .NET Framework or Java is chosen:
<?php/*=======================================================
| Tutorial 22
|
| This tutorial shows how to create an Excel file in PHP
| with a chart and show and format the chart data table.
* =======================================================*/include("Format.inc");
include("Color.inc");
include("Chart.inc");
header("Content-Type: text/html");
echo"Tutorial 22<br>";
echo"----------<br>";
// Create an instance of the class that exports Excel files
$workbook = new COM("EasyXLS.ExcelDocument");
// Create an worksheet
$workbook->easy_addWorksheet_2("SourceData");
// Get the table of data for the worksheet
$xlsTable1 = $workbook->easy_getSheet("SourceData")->easy_getExcelTable();
// Add data in cells for report header
$xlsTable1->easy_getCell(0, 0)->setValue("Show Date");
$xlsTable1->easy_getCell(0, 1)->setValue("Available Places");
$xlsTable1->easy_getCell(0, 2)->setValue("Available Tickets");
$xlsTable1->easy_getCell(0, 3)->setValue("Sold Tickets");
// Add data in cells for chart report values
$xlsTable1->easy_getCell(1, 0)->setValue("03/13/2005 00:00:00");
$xlsTable1->easy_getCell(1, 0)->setFormat($FORMAT_FORMAT_DATE);
$xlsTable1->easy_getCell(2, 0)->setValue("03/14/2005 00:00:00");
$xlsTable1->easy_getCell(2, 0)->setFormat($FORMAT_FORMAT_DATE);
$xlsTable1->easy_getCell(3, 0)->setValue("03/15/2005 00:00:00");
$xlsTable1->easy_getCell(3, 0)->setFormat($FORMAT_FORMAT_DATE);
$xlsTable1->easy_getCell(4, 0)->setValue("03/16/2005 00:00:00");
$xlsTable1->easy_getCell(4, 0)->setFormat($FORMAT_FORMAT_DATE);
$xlsTable1->easy_getCell(1, 1)->setValue("10000");
$xlsTable1->easy_getCell(2, 1)->setValue("5000");
$xlsTable1->easy_getCell(3, 1)->setValue("8500");
$xlsTable1->easy_getCell(4, 1)->setValue("1000");
$xlsTable1->easy_getCell(1, 2)->setValue("8000");
$xlsTable1->easy_getCell(2, 2)->setValue("4000");
$xlsTable1->easy_getCell(3, 2)->setValue("6000");
$xlsTable1->easy_getCell(4, 2)->setValue("1000");
$xlsTable1->easy_getCell(1, 3)->setValue("920");
$xlsTable1->easy_getCell(2, 3)->setValue("1005");
$xlsTable1->easy_getCell(3, 3)->setValue("342");
$xlsTable1->easy_getCell(4, 3)->setValue("967");
// Set column widths
$xlsTable1->easy_getColumnAt(0)->setWidth(100);
$xlsTable1->easy_getColumnAt(1)->setWidth(100);
$xlsTable1->easy_getColumnAt(2)->setWidth(100);
$xlsTable1->easy_getColumnAt(3)->setWidth(100);
// Add a chart sheetecho" ";
$workbook->easy_addChart_5("Chart", "=SourceData!\$A$1:\$D$5", $CHART_SERIES_IN_COLUMNS);
// Get the previously added chart
$xlsChartSheet = $workbook->easy_getSheetAt(1);
$xlsChart = $xlsChartSheet->easy_getExcelChart();
// Hide chart legend
$xlsChart->easy_getLegend()->setVisible(false);
// Show chart data table
$xlsChart->easy_getChartDataTable()->setVisible(true);
$xlsChart->easy_getChartDataTable()->getFontFormat()->setFont("Verdana");
$xlsChart->easy_getChartDataTable()->getFontFormat()->setFontSize(10);
$xlsChart->easy_getChartDataTable()->setHorizontalLines(false);
$xlsChart->easy_getChartDataTable()->setLegendKey(true);
$xlsChart->easy_getChartDataTable()->getLineColorFormat()->setLineColor((int)$COLOR_BLUE);
$xlsChart->easy_getChartDataTable()->setVerticalLines(false);
// Export Excel fileecho"Writing file: C:\Samples\Tutorial22 - Excel chart datatable.xlsx<br>";
$workbook->easy_WriteXLSXFile("C:\Samples\Tutorial22 - Excel chart datatable.xlsx");
// Confirm export of Excel fileif ($workbook->easy_getError() == "")
echo"File successfully created.";
elseecho"Error encountered: " . $workbook->easy_getError();
// Dispose memory
$workbook->Dispose();
$workbook = null;
?>
Overloaded methods For methods with same name but different parameters, only the first method overload retains the original name. Subsequent overloads are uniquely renamed by appending to the method name '_2', '_3', etc (method, method_2, method_3), an integer that corresponds to the order of declaration that can be found in EasyXLS.h, a file that comes with EasyXLS installation.
EasyXLS on Linux, Mac, Windows using Java with PHP
If you opt for the Java version of EasyXLS, a similar code as above requires PHP/Java Bridge between PHP and Java.
Overloaded methods For methods with same name but different parameters, only the first method overload retains the original name. Subsequent overloads are uniquely renamed by appending to the method name '_2', '_3', etc (method, method_2, method_3), an integer that corresponds to the order of declaration that can be found in EasyXLS.h, a file that comes with EasyXLS installation.
Linux and PHP This code sample works just the way it is for PHP on Windows, but PHP under Linux requires also PHP/Java Bridge and a similar code sample in Java.