Methods |
public
|
__construct(mixed $data = null, int $status = 200, array $headers = [], int $options = 0, bool $json = false): void
Create a new JSON response instance.
Create a new JSON response instance.
Parameters
$status |
The HTTP status code (200 "OK" by default)
|
$options |
If the data is already a JSON string
|
Overrides
|
#
|
public
static
|
fromJsonString(?string $data = null, int $status = 200, array $headers = []): static
{@inheritdoc}
Parameters
$data |
The JSON response string
|
$status |
The response status code (200 "OK" by default)
|
$headers |
An array of response headers
|
Overrides
|
#
|
public
|
withCallback(string|null $callback = null): $this
Sets the JSONP callback.
|
#
|
public
|
getData(bool $assoc = false, int $depth = 512): mixed
Get the json_decoded data from the response.
Get the json_decoded data from the response.
|
#
|
public
|
setData($data = []): static
{@inheritdoc}
|
#
|
protected
|
hasValidJson(int $jsonError): bool
Determine if an error occurred during JSON encoding.
Determine if an error occurred during JSON encoding.
|
#
|
public
|
setEncodingOptions($options): static
{@inheritdoc}
|
#
|
public
|
hasEncodingOption(int $option): bool
Determine if a JSON encoding option is set.
Determine if a JSON encoding option is set.
|
#
|