Last active
December 20, 2015 14:39
-
-
Save fernando-basso/6148022 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function __autoload( $class_name ) { | |
if ( file_exists( 'model/class.' . $class_name . '.inc.php' ) ) { | |
include 'model/class.' . $class_name . '.inc.php'; | |
} | |
if ( file_exists( 'dao/dao.' . $class_name . '.inc.php' ) ) { | |
include( 'dao/dao.' . $class_name . '.inc.php' ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment