Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takahashi-h5/d7139a6ffe5914de2ad679ab86f659bc to your computer and use it in GitHub Desktop.
Save takahashi-h5/d7139a6ffe5914de2ad679ab86f659bc to your computer and use it in GitHub Desktop.
<?php
$router = $di->getRouter();
// Define your routes here
$router->add(
'/aaa',
['controller' => 'index', 'action' => 'test']
);
$router->handle($_SERVER['REQUEST_URI']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment