thinkphp-wechat/application/common/controller/JsonReturn.php
Wenbin.Wang d49c9fde59 代码
2021-12-24 16:40:05 +08:00

15 lines
388 B
PHP

<?php
namespace app\common\controller;
class JsonReturn
{
public static function success($msg = '', $data = [], $status = 200)
{
return json_encode(['status' => $status, 'message' => $msg, 'data' => $data]);
}
public static function error($msg = '', $status = 500)
{
return json_encode(['status' => $status, 'message' => $msg, 'data' => []]);
}
}