CSY2028-assignment-2/autoload.php

6 lines
130 B
PHP
Raw Normal View History

2023-01-21 23:12:42 +00:00
<?php
function autoload($name) {
require '../'. str_replace('\\', '/', $name) .'.php';
}
spl_autoload_register('autoload');
?>