You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
265 B

4 years ago
  1. <?php
  2. /**
  3. * @author Administrator
  4. * @date 2021/1/27 18:49
  5. */
  6. namespace Api\Controller;
  7. class TestController extends BaseController
  8. {
  9. public function test()
  10. {
  11. $oss_setting = D("Options")->get("oss_setting");
  12. dump($oss_setting);
  13. }
  14. }