| 12345678910111213141516171819202122 |
- <?php
- namespace phpath;
- function load(string $name): void {
- $current = __DIR__;
- if ($name[0] !== '/') {
- $current .= '/';
- }
- require_once($current.$name);
- }
- load('source/system_detector.php');
- load('source/common_path.php');
- load('source/path.php');
- load('source/posix_path.php');
- load('source/windows_path.php');
|