Link 是一个微型的 PHP 应用路由库,为你的 PHP 项目和 API 实现快速路由功能。
简单路由:
<?php function routeMe(){ echo 'I am routed'; } Link::all( array( '/' => 'routeMe' ));