<?php declare (strict_types = 1); namespace app\Api\controller; use think\facade\Cache; class Index { public function index() { Cache::store("file"); return '您好!这是一个[Api]示例应用'; } }