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