1 2 3 4 5 6 7 8 9 10 11 12
<?php use WpfTest\Router; Router::getInstance()->mount('/', function (array $args) { echo '<h1>home</h1>'; }); Router::getInstance()->mount('/:username', function (array $args) { ?> <h1><?= $args['username'] ?></h1> <p>todo!</p> <?php });