-
- // Pay attention to include the correct class path
- require_once(dirname(__FILE__) . '/export.php');
- $exceler= newJason_Excel_Export();
-
- // Generate excel format here Different formats are generated based on different suffix names.
- $exceler->setFileName('jason_excel.xls');
-
- // Generate csv format
- // $exceler->setFileName('jason_excel.csv');
-
- // Set excel title row
- $excel_title = array('First column', 'Second column', 'Third column');
- $exceler->setTitle($excel_title);
-
- // Set excel content
- $excel_data= array(
- array( '1', '2', '3'), // The first row
- array('1', '2', '3'), // The second row
- array('1', '2', '3'), // The third line
- );
- $exceler->setContent($excel_data);
-
- // Generate excel
- $exceler->export();
- ?>
Copy code
|