I need to run a function to do some actions with each controller-name on my project. My function is defined on a controller like this:
foreach(glob(APPPATH . 'controllers/*' . 'php') as $controller){
$controller = basename($controller, '.php');
}
You need to scan your /application/controllers directory
and remove file extension from it
$controllers = array();
$this->load->helper('file');
// Scan files in the /application/controllers directory
// Set the second param to TRUE or remove it if you
// don't have controllers in sub directories
$files = get_dir_file_info(APPPATH.'controllers', FALSE);
// Loop through file names removing .php extension
foreach ( array_keys($files) as $file ) {
if ( $file != 'index.html' )
$controllers[] = str_replace('.php', '', $file);
}
print_r($controllers); // Array with all our controllers
OR
You can also follow this link to achieve this
controller list