Skip to content
This repository was archived by the owner on Sep 12, 2020. It is now read-only.

Latest commit

 

History

History
14 lines (11 loc) · 234 Bytes

File metadata and controls

14 lines (11 loc) · 234 Bytes

ClassLoader

簡単なクラスローダー

使い方

<?php
require_once __DIR__ . '/ClassLoader.php';
$loader = new ClassLoader();
$loader->registerDir(__DIR__ . '/hoge');
$loader->register();