Skip to content

Instantly share code, notes, and snippets.

@marcogrueter
Created September 19, 2013 14:19
Show Gist options
  • Save marcogrueter/6624199 to your computer and use it in GitHub Desktop.
Save marcogrueter/6624199 to your computer and use it in GitHub Desktop.
php excel library
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
require_once SHARED_ADDONPATH."modules/[DEIN MODUL]/libraries/[PFAD UND SO HALT]/PHPExcel.php";
class Excel extends PHPExcel {
// $this->load->library('Excel');
// dann:
// benutzern mit $this->excel->[PHPExcel Funktionen und so]
public function __construct() {
parent::__construct();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment