Skip to content

Instantly share code, notes, and snippets.

@hirak
Created February 23, 2012 23:42
Show Gist options
  • Save hirak/1895779 to your computer and use it in GitHub Desktop.
Save hirak/1895779 to your computer and use it in GitHub Desktop.
シンプルなPSR-0準拠クラスオートローダー ref: http://qiita.com/items/2774
<?php
//以下、コードの先頭に書いておけば以降require_onceを書かなくてよくなる
function simpleClassLoader($classname) {
return @include_once str_replace(
array('\\', '_'),
DIRECTORY_SEPARATOR,
$classname
) . '.php';
}
spl_autoload_register('simpleClassLoader');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment