Response.php 827 B

1234567891011121314151617181920
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | A3Mall
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2020 http://www.a3-mall.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: xzncit <158373108@qq.com>
  8. // +----------------------------------------------------------------------
  9. namespace mall\response;
  10. class Response {
  11. public static function returnArray($msg="",$code=1,$data=[],$count=0){
  12. return json(["code"=>$code, "msg"=>$msg,"count"=>$count,"data"=>$data]);
  13. }
  14. public static function returnJson($type,$info="",$status=0,$data=[]){
  15. return json_encode(["type"=>$type,"info"=>$info,"status"=>$status,"data"=>$data],JSON_UNESCAPED_UNICODE);
  16. }
  17. }