corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-16 addab242fe3986ab8e76aaa4448609ffbf9616ab
index.php
@@ -1,6 +1,14 @@
<?php
declare(strict_types= 1);
$show_errors = true;
if($show_errors) {
    ini_set("display_errors", "1");
}else{
    ini_set("display_errors","0");
}
spl_autoload_register(function ($class) {
    require "src/". str_replace("\\", "/", $class). ".php";