一个非常小的PHP框架,主要是路由功能。
ToroisatinyframeworkforPHPthatletsyouprototypewebapplicationsquickly.
示例代码:
require_once'toro.php';classMainHandlerextendsToroHandler{publicfunctionget(){echo'Hello,world';}}$site=newToroApplication(array(array('/','MainHandler')));$site->serve();
评论