示例#1
0
文件: index.php 项目: TeaMeow/Akaria
<?php

include '../src/akaria.php';
var_dump(Akaria::equals('Not Found', 404));
示例#2
0
 static function validateSecretKey($secretKey = null)
 {
     if ($secretKey !== SECRECT_KEY) {
         return Akaria::unauthorized();
     }
 }