Index.php
393 Bytes
<?php
use Action\AbstractAction;
use LibModels\Wap\Guang\PlusstarData;
/**
* 频道选择
*/
class IndexController extends AbstractAction
{
public function indexAction()
{
$this->_view->assign('title', 'YOHO!有货');
$this->_view->display('index', array('test' => 'hello world'));
$test = PlusstarData::brandInfo();
var_dump($test);
}
}