Float type converter.
Use to convert float/decimal data between PHP and the database types.
string|nullIdentifier name for this type
boolWhether numbers should be parsed using a locale aware parser when marshalling string inputs.
stringThe class to use for representing number objects
Constructor
Converts a string into a float point after parsing it using the locale aware parser.
Returns the base type name that this class is inheriting.
Returns type identifier name for this object.
Returns an array of the values converted to the PHP representation of this type.
Marshals request data into PHP floats.
Generate a new primary key value for a given type.
Convert integer data into the database format.
Casts given value from a database type to a PHP equivalent.
Get the correct PDO binding type for float data.
Sets whether to parse numbers passed to the marshal() function by using a locale aware parser.
__construct(string|null $name = null)
Constructor
string|null $name optional The name identifying this type
_parseValue(string $value): float
Converts a string into a float point after parsing it using the locale aware parser.
string $value The value to parse and convert to an float.
floatgetBaseType(): string|null
Returns the base type name that this class is inheriting.
This is useful when extending base type for adding extra functionality, but still want the rest of the framework to use the same assumptions it would do about the base type it inherits from.
string|nullgetName(): string|null
Returns type identifier name for this object.
string|nullmanyToPHP(array $values, array<string> $fields, Cake\Database\DriverInterface $driver): array<string, mixed>
Returns an array of the values converted to the PHP representation of this type.
array $values array<string> $fields Cake\Database\DriverInterface $driver array<string, mixed>marshal(mixed $value): string|float|null
Marshals request data into PHP floats.
Most useful for converting request data into PHP objects, that make sense for the rest of the ORM/Database layers.
mixed $value The value to convert.
string|float|nullnewId(): mixed
Generate a new primary key value for a given type.
This method can be used by types to create new primary key values when entities are inserted.
mixedtoDatabase(mixed $value, Cake\Database\DriverInterface $driver): float|null
Convert integer data into the database format.
mixed $value The value to convert.
Cake\Database\DriverInterface $driver The driver instance to convert with.
float|nulltoPHP(mixed $value, Cake\Database\DriverInterface $driver): float|null
Casts given value from a database type to a PHP equivalent.
mixed $value The value to convert.
Cake\Database\DriverInterface $driver The driver instance to convert with.
float|nullCake\Core\Exception\CakeExceptiontoStatement(mixed $value, Cake\Database\DriverInterface $driver): int
Get the correct PDO binding type for float data.
mixed $value The value being bound.
Cake\Database\DriverInterface $driver The driver.
intuseLocaleParser(bool $enable = true): $this
Sets whether to parse numbers passed to the marshal() function by using a locale aware parser.
bool $enable optional Whether to enable
$thisIdentifier name for this type
string|nullWhether numbers should be parsed using a locale aware parser when marshalling string inputs.
boolThe class to use for representing number objects
string
© 2005–present The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
https://api.cakephp.org/4.4/class-Cake.Database.Type.FloatType.html