Last active
January 22, 2025 06:59
-
-
Save manchumahara/827675e49a73c53596ae729e7d39d440 to your computer and use it in GitHub Desktop.
Php SpreadSheet Library WordPress Plugin https://codeboxr.com/php-spreadsheet-library-wordpress-plugin/
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
if ( defined('CBXPHPSPREADSHEET_PLUGIN_NAME') && cbxphpspreadsheet_loadable() ) { | |
//Include PHPExcel | |
require_once( CBXPHPSPREADSHEET_ROOT_PATH . 'lib/vendor/autoload.php' ); //or use 'cbxphpspreadsheet_load();' | |
//now take instance | |
$objPHPExcel = new \PhpOffice\PhpSpreadsheet\Spreadsheet(); | |
//do whatever you need to do | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Perfect, thank you for your help! Lifesaver!