Search
 
SCRIPT & CODE EXAMPLE
 

PHP

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
Comment

PREVIOUS NEXT
Code Example
Php :: php one hour in the future 
Php :: Uncaught ReferenceError: commonL10n is not defined 
Php :: validation laravel 
Php :: laravel all fillable 
Php :: last item coma replace and php 
Php :: php get slug 
Php :: disable display error 
Php :: get specific word from string php 
Php :: laravel search multiple (related) tables 
Php :: get query string in symfony twig 
Php :: php undefined index meaNING 
Php :: codeigniter how to know update failed 
Php :: php upload multiple files 
Php :: ?? php 
Php :: how to check path laravel 
Php :: convert png to webp in php 
Php :: run laravel seeder 
Php :: laravel blade php variable concatenate javascript variable 
Php :: laravel add package without updating 
Php :: laravel get second last record 
Php :: laravel use config 
Php :: eloquent insert 
Php :: display pdf file in laravel 
Php :: two condition in one laravel query 
Php :: parse json phph 
Php :: laravel sharing record 
Php :: wocommerce product image 
Php :: array_unshift 
Php :: not equal in laravel blade 
Php :: asin() php 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =