Chinaunix首页 | 论坛 | 博客
  • 博客访问: 72097
  • 博文数量: 67
  • 博客积分: 1334
  • 博客等级: 中尉
  • 技术积分: 670
  • 用 户 组: 普通用户
  • 注册时间: 2011-03-08 10:56
文章分类

全部博文(67)

文章存档

2016年(2)

2015年(2)

2012年(9)

2011年(54)

我的朋友
最近访客

分类: 系统运维

2011-12-05 18:45:40

  1. <?php
  2. class AdminController extends Zend_Controller_Action
  3. {

  4.     public function init() {
  5.         $this->registry = Zend_Registry::getInstance();
  6.         $this->view = $this->registry['view'];
  7.         $this->view->baseUrl = $this->_request->getBaseUrl();
  8.            
  9.     }
  10.    

  11.     public function indexAction(){
  12.         echo $this->view->render('index.phtml');
  13.     }

  14.    
  15.    
  16. }


  17. ?>
阅读(700) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~