<?php namespace common\service; /* * 网站报名 */ use common\api\EnrollServer; use frontend\base\Help; use yii\db\Exception; class SiteSignupService { public $type = 1; /* * 国内项目报名 */ public function ChinaSign($data,$terminalType,$type = 1) { $en = new EnrollServer(); $cacheResult = $en->Restrict(); if($cacheResult === false) throw new Exception('您今天的报名次数已超过限制'); } }