You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
491 B
PHP
21 lines
491 B
PHP
<?php
|
|
|
|
namespace BSR;
|
|
|
|
ini_set('display_errors', 'On');
|
|
|
|
// register an autoloader to automatically load classes
|
|
// the namespace for the class must begin with BSR and
|
|
// otherwise respect the PSR-4 standard
|
|
spl_autoload_register(function ($class) {
|
|
$class = substr($class, strlen('BSR'));
|
|
$path = sprintf('%s/%s.php', __DIR__, str_replace('\\', '/', $class));
|
|
|
|
if (file_exists($path)) {
|
|
require $path;
|
|
}
|
|
});
|
|
|
|
$web = new NetBiblio();
|
|
$web->Run();
|