<?php/** * Регистрация автозагрузчика. */spl_autoload_register(function($classname){ $path = strtr($classname, '\', '/'); if (file_exists($path)) { require_once $path; }});