Skip to content

Instantly share code, notes, and snippets.

@robap
Created November 6, 2011 14:39
Show Gist options
  • Save robap/1342967 to your computer and use it in GitHub Desktop.
Save robap/1342967 to your computer and use it in GitHub Desktop.
Autoloader usage
<?php
//Unfortunately, AutoLoader can't auto load itself
require '/path/to/AutoLoader.php';
$auto_loader = new AutoLoader;
$auto_loader->registerDirectory('lib1/');
$auto_loader->registerDirectory('lib2/');
$foo = new Foo;
$bar = new Bar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment