Skip to content

Instantly share code, notes, and snippets.

@jlamim
Created April 28, 2016 03:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlamim/357f67c938c67837e164028a9e3f9c19 to your computer and use it in GitHub Desktop.
Save jlamim/357f67c938c67837e164028a9e3f9c19 to your computer and use it in GitHub Desktop.
Importando dados CSV com CodeIgniter - Autoload
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
$autoload['packages'] = array();
$autoload['libraries'] = array('database', 'session');
$autoload['drivers'] = array();
$autoload['helper'] = array('url');
$autoload['config'] = array();
$autoload['language'] = array();
$autoload['model'] = array();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment