Skip to content

Instantly share code, notes, and snippets.

View gofishwbeeler's full-sized avatar

William Beeler gofishwbeeler

View GitHub Profile
@JunaidQadirB
JunaidQadirB / config.php
Created May 22, 2014 07:36
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) {