Index.php 234 B

123456789101112131415
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\Api\controller;
  4. use think\facade\Cache;
  5. class Index
  6. {
  7. public function index()
  8. {
  9. Cache::store("file");
  10. return '您好!这是一个[Api]示例应用';
  11. }
  12. }