Methods |
public
|
__construct(mixed $data = null, int $status = 200, array $headers = [], bool $json = false)
Parameters
$status |
The HTTP status code (200 "OK" by default)
|
$json |
If the data is already a JSON string
|
Overrides
Overriden by
|
#
|
public
static
|
fromJsonString(string $data, int $status = 200, array $headers = []): static
Factory method for chainability.
Factory method for chainability.
Example:
return JsonResponse::fromJsonString('{"key": "value"}')
->setSharedMaxAge(300);
Parameters
$data |
The JSON response string
|
$status |
The response status code (200 "OK" by default)
|
$headers |
An array of response headers
|
Overriden by
|
#
|
public
|
setCallback(string|null $callback): $this
Sets the JSONP callback.
Parameters
$callback |
The JSONP callback or null to use none
|
Throws
|
#
|
public
|
setJson(string $json): $this
Sets a raw string containing a JSON document to be sent.
Sets a raw string containing a JSON document to be sent.
|
#
|
public
|
setData(mixed $data = []): $this
Sets the data to be sent as JSON.
Sets the data to be sent as JSON.
Throws
Overriden by
|
#
|
public
|
getEncodingOptions(): int
Returns options used while encoding data to JSON.
Returns options used while encoding data to JSON.
|
#
|
public
|
setEncodingOptions(int $encodingOptions): $this
Sets options used while encoding data to JSON.
Sets options used while encoding data to JSON.
Overriden by
|
#
|
protected
|
update(): $this
Updates the content and headers according to the JSON data and callback.
Updates the content and headers according to the JSON data and callback.
|
#
|