This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
// save this file to: ExcelService.class.php | |
Create new folder 'libs' under your project dir, and download PHPExcel-1.8 library .zip from here.. | |
use this clone url: [email protected]:PHPOffice/PHPExcel.git | |
OR https://github.com/PHPOffice/PHPExcel. | |
*/ | |
define('TMP_FILES', "../temp/"); // temp folder where it stores the files into. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"USD": { | |
"symbol": "$", | |
"name": "US Dollar", | |
"symbol_native": "$", | |
"decimal_digits": 2, | |
"rounding": 0, | |
"code": "USD", | |
"name_plural": "US dollars" | |
}, |