slim中返回结果加密的
Posted kaoru
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了slim中返回结果加密的相关的知识,希望对你有一定的参考价值。
//返回结果不加密
$this->get("/open]",function (Request $request, Response $response, $args) {
$response->write(json_encode([‘status‘=>2,‘code‘=>null,‘money‘=>1,‘gamemoney‘=>10,‘msg‘=>‘充值成功‘]));
return $response;
});
//返回结果加密
$this->get("/open]",function (Request $request, Response $response, $args) {
return $response->withJson([‘status‘=>2,‘code‘=>null,‘money‘=>1,‘gamemoney‘=>10,‘msg‘=>‘充值成功‘]);
});
以上是关于slim中返回结果加密的的主要内容,如果未能解决你的问题,请参考以下文章