Chinaunix首页 | 论坛 | 博客
  • 博客访问: 420874
  • 博文数量: 117
  • 博客积分: 5235
  • 博客等级: 大校
  • 技术积分: 1775
  • 用 户 组: 普通用户
  • 注册时间: 2007-09-12 15:51
文章分类

全部博文(117)

文章存档

2012年(9)

2011年(2)

2010年(21)

2009年(13)

2008年(72)

我的朋友

分类:

2010-03-31 10:04:03

1. 简介
相当于路由控制器
2. Bootstrap 初始化设置
3. Action传递参数
    public function indexAction()
    {
     echo "Index
";
     $username = $this->_getParam('username');
     $password = $this->_getParam('password');
     echo $username;
     echo "
";
     echo $password;
        /* Initialize action controller here */
    }
   
    ~/auth/index/username/jack/password/111
4. Action 重定向输出
$this->render("index");   //重定向到indexAction对应的view
$this->renderScript("default.phtml"); //重定向到default.phtml文件
阅读(424) | 评论(0) | 转发(0) |
0

上一篇:Auth 总结

下一篇:关于数据库

给主人留下些什么吧!~~