Index.php 438 Bytes
<?php
use Action\AbstractAction;
use Api\Yohobuy;

/**
 * 频道选择
 */
class IndexController extends AbstractAction
{
    public function indexAction()
    {
        $this->_view->assign('title', 'YOHO!有货');
        $this->_view->display('index', array('test' => 'hello world'));
        
        //$test = Yohobuy::yarClient('http://service.api.yohobuy.com/guang/service/v1/plustar/', 'getBrandInfo', array('id' => 289));
    }
}