PHP Class Zend\Diactoros\Response\JsonResponse

Allows creating a response by passing data to the constructor; by default, serializes the data to JSON, sets a status code of 200 and sets the Content-Type header to application/json.
Inheritance: extends Zend\Diactoros\Response, use trait InjectContentTypeTrait
Show file Open project: zendframework/zend-diactoros Class Usage Examples

Public Methods

Method Description
__construct ( mixed $data, integer $status = 200, array $headers = [], integer $encodingOptions = self::DEFAULT_JSON_FLAGS ) Create a JSON response with the given data.

Private Methods

Method Description
jsonEncode ( mixed $data, integer $encodingOptions ) : string Encode the provided data to JSON.

Method Details

__construct() public method

Default JSON encoding is performed with the following options, which produces RFC4627-compliant JSON, capable of embedding into HTML. - JSON_HEX_TAG - JSON_HEX_APOS - JSON_HEX_AMP - JSON_HEX_QUOT - JSON_UNESCAPED_SLASHES
public __construct ( mixed $data, integer $status = 200, array $headers = [], integer $encodingOptions = self::DEFAULT_JSON_FLAGS )
$data mixed Data to convert to JSON.
$status integer Integer status code for the response; 200 by default.
$headers array Array of headers to use at initialization.
$encodingOptions integer JSON encoding options to use.