首页 > PHP资讯 > PHP培训技术 > 轻量级PHP路由库 Klein

轻量级PHP路由库 Klein

PHP培训技术

示例代码:

<?phprequire_once __DIR__ . '/vendor/autoload.php';$klein = new KleinKlein();$klein->respond('GET', '/hello-world', function () {    return 'Hello World!';});$klein->dispatch();
本文由欣才IT学院整理发布,未经许可,禁止转载。