ConcurrentController.class.php
364 Bytes
<?php
/*
* 直播-列表
* 2018.07.19
*
*/
namespace Apicp\Controller\VhLiveTotal;
use Common\Common\Vhall;
class ConcurrentController extends AbstractController
{
public function Index_post()
{
$params = I('post.');
$list = Vhall::instance()->concurrencyNum($params);
$this->_result = $list;
return true;
}
}