sarju / json_response
A simple class that returns a properly formatted json with http response
1.1.1
2022-12-16 11:47 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2025-08-16 17:43:54 UTC
README
A simple class that returns a properly formatted json with http response
Installation
composer require sarju/json_response
Usage
<?php require_once __DIR__ . "/vendor/autoload.php"; use Devscreencast\ResponseClass\JsonResponse; $student = array( 'name' => 'John Doe', 'course' => 'Software Engineering', 'level' => '200', 'collections' => ['books' => 'Intro to UML', 'music' => 'rap'] ); new JsonResponse('unauthorized', '', $student);
Param1 (Required)
- success or ok - 200 http status
- unauthorized - 401 http status
- exception - 500 http status (Internal server error)
Param2 (Optional)
string - the return message , use empty quote if not available
Param3 (Optional)
Array - Array of Data