Encapsulates all conversion functions for values coming from a database into PHP and going from PHP into a database.
getBaseType( )
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.
getName( )
Returns type identifier name for this object.
marshal( mixed $value )
Marshalls flat data into PHP objects.
Most useful for converting request data into PHP objects, that make sense for the rest of the ORM/Database layers.
$value
newId( )
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.
Cake\Database\Type\UuidType
toDatabase( mixed $value , Cake\Database\Driver $driver )
Casts given value from a PHP type to one acceptable by a database.
$value
Cake\Database\Driver
$driver
toPHP( mixed $value , Cake\Database\Driver $driver )
Casts given value from a database type to a PHP equivalent.
$value
Cake\Database\Driver
$driver
toStatement( mixed $value , Cake\Database\Driver $driver )
Casts given value to its Statement equivalent.
$value
Cake\Database\Driver
$driver
© 2005–2017 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/3.4/class-Cake.Database.TypeInterface.html