mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 15:50:03 +01:00
519 B
519 B
FloatType
v::floatType()
Validates whether the type of a value is float.
v::floatType()->validate(1.5); // true
v::floatType()->validate('1.5'); // false
v::floatType()->validate(0e5); // true
See also: