browomir/standardized-json-response
最新稳定版本:1.0.0
Composer 安装命令:
composer require browomir/standardized-json-response
包简介
Simple class to prepare standardized JSON response based on JSend specification
关键字:
README 文档
README
Simple class to prepare standardized JSON response based on JSend specification
Installation
The preferred way to install this class is through composer.
Either run
php composer.phar require browomir/standardized-json-response "dev-master"
or add
// composer.json { "require": { "browomir/standardized-json-response": "dev-master" } }
to the require section of your composer.json file.
Usage
This simple example show how you can use this class:
require_once 'vendor/autoload.php'; use StandardizedJsonResponse\Response; $response = new Response(); $response->setStatus(Response::STATUS_SUCCESS); $response->setData( array( 'lorem' => 'ipsum' ) ); $response->setMessage('The message'); echo $response->getEncodedResponse();
统计信息
- 总下载量: 38
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-11-01