4,251
社区成员




<?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";
}
}