シンプルなPSR-0準拠クラスオートローダーを無理やり1行にして焼き直した。
<?php
// PHP 5.1.2 ~ PHP 5.2.x
spl_autoload_register(create_function('$c', '@include_once strtr($c, "\\_", "//").".php";'));
// PHP 5.3.0 or later
spl_autoload_register(function($c) { @include_once strtr($c, '\\_', '//').'.php'; });
Link