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