Answers for "how to make core controller codeigniter 3 more than 1"

PHP
0

how to make core controller codeigniter 3 more than 1

<?php
#  By placing this at the bottom of your config.php
function __autoload($class) {
    if(strpos($class, 'CI_') !== 0) {
        @include_once( APPPATH . 'core/'. $class . EXT );
    }
}

// on php 7.2 Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /var/www/html/application/config/config.php on line 553
Posted by: Guest on June-12-2021

Code answers related to "how to make core controller codeigniter 3 more than 1"

Browse Popular Code Answers by Language