ScalarFormatter
extends NormalizerFormatter
in package
Formats data into an associative array of scalar values.
Objects and arrays will be JSON encoded.
Tags
Table of Contents
Constants
- SIMPLE_DATE = "Y-m-d H:i:s"
Properties
- $dateFormat : mixed
Methods
- __construct() : mixed
- format() : mixed
- Formats a log record.
- formatBatch() : mixed
- Formats a set of log records.
- normalize() : mixed
- normalizeException() : mixed
- normalizeValue() : mixed
- toJson() : string
- Return the JSON representation of a value
Constants
SIMPLE_DATE
public
mixed
SIMPLE_DATE
= "Y-m-d H:i:s"
Properties
$dateFormat
protected
mixed
$dateFormat
Methods
__construct()
public
__construct([string $dateFormat = null ]) : mixed
Parameters
- $dateFormat : string = null
-
The format of the timestamp: one supported by DateTime::format
format()
Formats a log record.
public
format(array<string|int, mixed> $record) : mixed
Parameters
- $record : array<string|int, mixed>
-
A record to format
Return values
mixed —The formatted record
formatBatch()
Formats a set of log records.
public
formatBatch(array<string|int, mixed> $records) : mixed
Parameters
- $records : array<string|int, mixed>
-
A set of records to format
Return values
mixed —The formatted set of records
normalize()
protected
normalize(mixed $data[, mixed $depth = 0 ]) : mixed
Parameters
- $data : mixed
- $depth : mixed = 0
normalizeException()
protected
normalizeException(mixed $e) : mixed
Parameters
- $e : mixed
normalizeValue()
protected
normalizeValue(mixed $value) : mixed
Parameters
- $value : mixed
toJson()
Return the JSON representation of a value
protected
toJson(mixed $data[, bool $ignoreErrors = false ]) : string
Parameters
- $data : mixed
- $ignoreErrors : bool = false