p2 project
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

5 months ago
<?php
namespace app\admin\controller;
class Test extends AdminBaseController
{
public function index()
{
4 months ago
$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
]]);
5 months ago
}
}