Hello,
Please how can I use spl_autoload_register() with Codeigniter? I need to do this because Im using Codeigniter with another framework which also uses autoload.
I saw something here
http://stackoverflow.com/questions/3710480/php-spl-autoload-register
but I dont know how to target the CodeIgniter autoload. Im new to OOP and Codeigniter. Thanks a lot!
The above link has this:
function autoload_services($class_name){
$file = 'services/' . $class_name. '.php';
if (file_exists($file)){
require_once($file);
}
}
function autoload_vos($class_name){
$file = 'vos/' . $class_name. '.php';
if (file_exists($file)){
require_once($file);
}
}
function autoload_printers($class_name){
$file = 'printers' . $class_name. '.php';
if (file_exists($file)){
require_once($file);
}
}
spl_autoload_register('autoload_services');
spl_autoload_register('autoload_vos');
spl_autoload_register('autoload_printers');