Skip to content

Instantly share code, notes, and snippets.

@antelove19
Forked from DennisRas/config.php
Created August 14, 2018 05:50
Show Gist options
  • Save antelove19/bc3ab2f9f87a0b93a06f02e6b067e12a to your computer and use it in GitHub Desktop.
Save antelove19/bc3ab2f9f87a0b93a06f02e6b067e12a to your computer and use it in GitHub Desktop.
Autoloader for CodeIgniter
function __autoload($class)
{
if (strpos($class, 'CI_') !== 0)
{
if (file_exists($file = APPPATH . 'core/' . $class . EXT))
{
include $file;
}
elseif (file_exists($file = APPPATH . 'libraries/' . $class . EXT))
{
include $file;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment