Skip to content

Instantly share code, notes, and snippets.

@robap
Created November 6, 2011 14:31
Show Gist options
  • Save robap/1342954 to your computer and use it in GitHub Desktop.
Save robap/1342954 to your computer and use it in GitHub Desktop.
Easy but wrong way to set up php class autoloading
<?php
function __autoload( $class_name )
{
require_once $class_name . '.php';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment