PHPでClass not foundが出た時の応急処置

よそのプロジェクトでなんか上手く動かないときに強引に動かすときの用途

$libdir="{libraryのdirectory}"

spl_autoload_register(function($name){
    include __DIR__ . DIRECTORY_SEPARATOR . $libdir . DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR, $name) . '.php';
});