Index.php 277 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 <?php use Action\AbstractAction; /** * 频道选择 */ class IndexController extends AbstractAction { public function indexAction() { $this->_view->assign('title', 'YOHO!有货'); $this->_view->display('index', array('test' => 'hello world')); } }