Skip to content

Instantly share code, notes, and snippets.

@frosenlind
frosenlind / config.php
Created January 23, 2016 19:38 — forked from JunaidQadirB/config.php
Enable Class loading with Namespaces in CodeIgniter
/*
* Append this to the end of your application/config.php
* @see http://stackoverflow.com/questions/3700626/namespace-in-php-codeigniter-framework#21858556
*/
spl_autoload_extensions('.php'); // Only Autoload PHP Files
spl_autoload_register(function($classname) {
if (strpos($classname, '\\') !== false) {