Skip to content

Instantly share code, notes, and snippets.

@prinsss
Last active March 18, 2016 10:12
Show Gist options
  • Save prinsss/d1af9fefbcbd89996273 to your computer and use it in GitHub Desktop.
Save prinsss/d1af9fefbcbd89996273 to your computer and use it in GitHub Desktop.
Autoload PHP namespace
<?php
function __autoload($classname) {
$dir = dirname(__FILE__);
$include_dir = $dir.DIRECTORY_SEPARATOR."includes".DIRECTORY_SEPARATOR."classes".DIRECTORY_SEPARATOR;
$filename = $include_dir.str_replace('\\', DIRECTORY_SEPARATOR, $classname) . '.class.php';
require_once($filename);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment