其他分享
首页 > 其他分享> > Swoft

Swoft

作者:互联网

//获取全局的Request/Response对象
$request = Context::mustGet()->getRequest();
$response = Context::mustGet()->getResponse();

//设置返回格式 默认 UTF-8
$response->withContentType('application/json');

//返回JSON格式
$response->withData($arr); //$arr为数组 自动转换

//对url参数正则验证
@RequestMapping(route="/detail/{id}",params={"id="\d+""},method={RequestMethod::GET})

//中间件

//JSON参数的获取

  

标签:arr,mustGet,Swoft,id,JSON,Context,response
来源: https://www.cnblogs.com/finnlee/p/15054032.html