FORMAT_GENERAL
FORMAT_GENERAL = 'General'
$isSupervisor : bool
Supervisor?
$parent : \PhpOffice\PhpSpreadsheet\Spreadsheet|\PhpOffice\PhpSpreadsheet\Style\Style
Parent. Only used for supervisor.
$parentPropertyName : null|string
Parent property name.
$builtInFormats : array
Excel built-in number formats.
$flippedBuiltInFormats : array
Excel built-in number formats (flipped, for faster lookups).
$formatCode : string
Format Code.
$builtInFormatCode : string
Built-in format Code.
$dateFormatReplacements : array
Search/replace values to convert Excel date/time format masks to PHP format masks.
$dateFormatReplacements24 : array
Search/replace values to convert Excel date/time format masks hours to PHP format masks (24 hr clock).
$dateFormatReplacements12 : array
Search/replace values to convert Excel date/time format masks hours to PHP format masks (12 hr clock).
__construct(bool $isSupervisor = false, bool $isConditional = false) : mixed
Create a new NumberFormat.
| bool | $isSupervisor | Flag indicating if this is a supervisor or not Leave this value at default unless you understand exactly what its ramifications are |
| bool | $isConditional | Flag indicating if this is a conditional style or not Leave this value at default unless you understand exactly what its ramifications are |
bindParent(\PhpOffice\PhpSpreadsheet\Spreadsheet|\PhpOffice\PhpSpreadsheet\Style\Style $parent, null|string $parentPropertyName = null) : \PhpOffice\PhpSpreadsheet\Style\Supervisor
Bind parent. Only used for supervisor.
| \PhpOffice\PhpSpreadsheet\Spreadsheet|\PhpOffice\PhpSpreadsheet\Style\Style | $parent | |
| null|string | $parentPropertyName |
applyFromArray(array $pStyles) : \PhpOffice\PhpSpreadsheet\Style\NumberFormat
Apply styles from array.
$spreadsheet->getActiveSheet()->getStyle('B2')->getNumberFormat()->applyFromArray(
[
'formatCode' => NumberFormat::FORMAT_CURRENCY_EUR_SIMPLE
]
);
| array | $pStyles | Array containing style information |
toFormattedString(mixed $value, string $format, array $callBack = null) : string
Convert a value in a pre-defined format to a PHP string.
| mixed | $value | Value to format |
| string | $format | Format code, see = self::FORMAT_* |
| array | $callBack | Callback function for additional formatting of string |
Formatted string