青柠:微型php web框架

时间:2024-03-14 19:39:47
【文件属性】:

文件名称:青柠:微型php web框架

文件大小:15KB

文件格式:ZIP

更新时间:2024-03-14 19:39:47

PHP

酸橙 Lime是一个微型Web框架,可用于以最少的精力快速用PHP创建Web应用程序。 $ app = new Lime \ App (); $ app -> bind ( "/" , function () { return "Hello World!" ; }); $ app -> run (); 仅包含一个文件(〜35KB),就可以开始使用。 路线 在Lime中,路由是与URL匹配模式配对的HTTP方法。 每个路由都与一个块关联: $ app -> get ( "/" , function () { return "This was a GET request..." ; }); $ app -> post ( "/" , function () { return "This was a POST request..." ; }); $ app -> b


【文件预览】:
lime-master
----src()
--------Lime()
----LICENSE(1KB)
----README.md(5KB)
----index.php(172B)
----.gitignore(9B)
----.htaccess(204B)
----composer.json(556B)

网友评论