5 lines
91 B
PHP
5 lines
91 B
PHP
<?php
|
|
foreach (glob(__DIR__ . '/*/index.php') as $filename) {
|
|
require_once($filename);
|
|
}
|