Rount::get('user/{id}' , function($id){
return 'User-id-'.$id;
});
Rount::get('user/{name?}' , function($name){
return 'User-id-'.$name;
});
})
因为id没有限制正则匹配
Rount::get('user/{id}' , function($id){
return 'User-id-'.$id;
});
Rount::get('user/{name?}' , function($name){
return 'User-name-'.$name;
});
url: http://localhost/public/user/abcuser/abc
会输出什么?
会走第一个路由,只有不传参数的时候才走第二个路由;仔细看视频,输出的是 User-id-sean