Files
tougao/application/api/controller/Index.php
wangjinlei 251d1b19c8 20201112
2020-11-12 15:51:19 +08:00

19 lines
233 B
PHP

<?php
namespace app\api\controller;
use think\Controller;
use think\Db;
class Index extends Controller{
public function index() {
}
public function test() {
echo md5('mtrsuper999');
}
}