OOP Counter

This commit is contained in:
2024-07-12 12:12:31 +02:00
parent 6bb19ad6b0
commit 49a65d4d1a
28 changed files with 297 additions and 89 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
spl_autoload_register(function ($name) {
$_name = lcfirst($name);
require_once "/home/k/khofmann/public_html/phpCourse/tasks/oop/classes/$_name/$_name.php";
});