コード例 #1
0
ファイル: Card.php プロジェクト: derek-chow/YunYinService
 protected function init()
 {
     if (Input::post('key', $apikey, 'string') && $apikey == Config::getSecret('api', 'card')) {
         parent::init();
     } else {
         $this->response(-3, 'API key无效');
         exit;
     }
 }