4,250
社区成员
发帖
与我相关
我的任务
分享
<?php
class OtherController extends Zend_Controller_Action
{
public function init()
{
}
public function indexAction()
{
$this->view->content = "A";
}
public function listAction()
{
$this->view->content = "B list";
}
}