Files
sentcms/application/api/controller/Index.php
molong c0b94d30c5 1、文件上传验证
2、增加图片上传配置
2、接口功能优化
2018-03-23 20:17:32 +08:00

12 lines
242 B
PHP

<?php
namespace app\api\controller;
class Index extends \app\common\controller\Api {
public $mustToken = true;
public function usercount(){
$this->data['data'] = array('team_num'=>100,'coustomer_num'=>10000);
return $this->data;
}
}