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.
20 lines
470 B
20 lines
470 B
<?php
|
|
|
|
namespace app\admin\controller;
|
|
|
|
class Test extends AdminBaseController
|
|
{
|
|
|
|
|
|
public function index()
|
|
{
|
|
$memoryLimit = ini_get('memory_limit');
|
|
$uploadMax = ini_get('upload_max_filesize');
|
|
$postMax = ini_get('post_max_size');
|
|
return json(['code' => '0', 'msg' => 'SUCCESS', 'data' => [
|
|
'memory_limit' => $memoryLimit,
|
|
'upload_max' => $uploadMax,
|
|
'post_max' => $postMax
|
|
]]);
|
|
}
|
|
}
|