欢迎各位兄弟 发布技术文章
这里的技术是共享的
U('User/add') // 生成User模块的add操作地址
复制代码
U('Home/User/add') // 生成Home分组的User模块的add操作地址
复制代码
U('add') // 生成当前访问模块的add操作地址
复制代码
U('Blog/read?id=1') // 生成Blog模块的read操作 并且id为1的URL地址
复制代码
U('Blog/cate',array('cate_id'=>1,'status'=>1))
U('Blog/cate','cate_id=1&status=1')
U('Blog/cate?cate_id=1&status=1')
复制代码
U('Blog/cate/cate_id/1/status/1')
复制代码
U('Blog/read?id=1')
复制代码
http://serverName/index.php?m=Blog&a=read&id=1
复制代码
http://serverName/index.php/Blog/read/id/1
复制代码
http://serverName/Blog/read/id/1
复制代码
'URL_PATHINFO_DEPR'=>'_'
复制代码
http://serverName/Blog_read_id_1
复制代码
http://serverName/Blog/read/id/1.html
复制代码
U('Blog/read','id=1','xml')
复制代码
http://serverName/Blog/read/id/1.xml
复制代码
'news/:id\d'=>'News/read'
复制代码
U('/news/1')
复制代码
http://serverName/index.php/news/1
复制代码
U('Blog/read@blog.thinkphp.cn','id=1');
复制代码
U('Blog/read#comment','id=1','html')
复制代码
http://serverName/Blog/read/id/1.html#comment
复制代码
U('Blog/read#comment@blog','id=1');
来自 http://www.thinkphp.cn/info/132.html