index.php 214 B

123456789101112131415
  1. <?php
  2. namespace markdoc;
  3. function load(string $name): void {
  4. $current = __DIR__;
  5. if ($name[0] !== '/') {
  6. $current .= '/';
  7. }
  8. require_once($current.$name);
  9. }
  10. load('source/page.php');