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.
18 lines
265 B
18 lines
265 B
<?php
|
|
/**
|
|
* @author Administrator
|
|
* @date 2021/1/27 18:49
|
|
*/
|
|
|
|
|
|
namespace Api\Controller;
|
|
|
|
|
|
class TestController extends BaseController
|
|
{
|
|
public function test()
|
|
{
|
|
$oss_setting = D("Options")->get("oss_setting");
|
|
dump($oss_setting);
|
|
}
|
|
}
|