Skip to content

Instantly share code, notes, and snippets.

@fernando-basso
Last active December 20, 2015 14:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fernando-basso/6148022 to your computer and use it in GitHub Desktop.
Save fernando-basso/6148022 to your computer and use it in GitHub Desktop.
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