9 lines
165 B
PHP
9 lines
165 B
PHP
<?php
|
|
$files = new DirectoryIterator(__DIR__ . '/api');
|
|
foreach ($files as $file) {
|
|
if ($file->isDir()) {
|
|
continue;
|
|
}
|
|
include_once $file->getRealPath();
|
|
}
|