码迷,mamicode.com
首页 > 其他好文 > 详细

tp5学习思考

时间:2017-12-25 16:05:12      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:规则   code   echo   ret   alt   info   hello   world   logs   

路由

tp5不再支持普通路由的访问,如果在route.php配置文件中,添加路由规则

Route::rule(‘nihao/[:name]‘,‘nihao‘);

index控制器nihao方法如下

public function nihao(Request $request,$name = ‘World‘)
    {
       echo ‘url:‘.$request->url().‘<br/>‘;
       return ‘hello ‘.$name;
    }

通过http://www.tp52.com/nihao?name=ff访问,

技术分享图片

获取不到name参数的值

tp5学习思考

标签:规则   code   echo   ret   alt   info   hello   world   logs   

原文地址:http://www.cnblogs.com/Mr-fhl/p/8109717.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!