Skip to content

Instantly share code, notes, and snippets.

@azrad
Created February 5, 2013 00:59
Show Gist options
  • Save azrad/4711218 to your computer and use it in GitHub Desktop.
Save azrad/4711218 to your computer and use it in GitHub Desktop.
How I autoload my models
<?php
spl_autoload_register('seed_autoload');
function seed_autoload($class_name) {
$the_class_name = from_camel_case($class_name);
if(file_exists(MODEL_DIR .'/' .$the_class_name .'.class.php'))
require_once MODEL_DIR .'/' .$the_class_name .'.class.php';
}
@amin007
Copy link

amin007 commented Apr 28, 2014

Akan aplikasi dalam mvc melayu

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment