u() 方法解决了路由地址的反转解析,即URL生成。u($c, $m, $params='', $page) 函数详解

    1. 参数
    2. 1、控制器名称
    3. 2、方法名称
    4. 3url 参数 【可选参数 默认 “”】,可以传递字符串(“1/2/grace”)形式或数组 array(1, 2 , 'grcae'))形式的参数
    5. 4、分页页码 【可选参数 默认 null

    演示代码

    1. <?php
    2. class indexController extends grace{
    3. public function index(){
    4. echo u('index', 'test').'<br />';
    5. //输出 /index/test
    6. echo u('index', 'test', '1/2/grace').'<br />';
    7. //输出 /index/test/1/2/grace
    8. echo u('index', 'test', array(3, 4, 'grace')).'<br />';
    9. //输出 /index/test/3/4/grace
    10. echo u('index', 'test', array(3, 4, 'grace'), 3).'<br />';
    11. //输出 /index/test/3/4/grace/page_3
    12. }
    13. }

    说明:u()方法会自动识别分组目录并生成对应的url ^_^

    原文: http://www.phpgrace.com/doc/info/312-1.html