how to make core controller codeigniter 3 more than 1

Solutions on MaxInterview for how to make core controller codeigniter 3 more than 1 by the best coders in the world

showing results for - "how to make core controller codeigniter 3 more than 1"
Persephone
17 Oct 2016
1<?php
2#  By placing this at the bottom of your config.php
3function __autoload($class) {
4    if(strpos($class, 'CI_') !== 0) {
5        @include_once( APPPATH . 'core/'. $class . EXT );
6    }
7}
8
9// on php 7.2 Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /var/www/html/application/config/config.php on line 553
10