Hi All, Does Zend\Validator\Digits support floats? i.e. validate TRUE for a given float?
It's just if I pass 7.5, Digits returns false? but if I look at the isValid() method of the Digits class, the first thing it does are sanity checks, and one is: is_float($value) So we know that this will return false if a string is passed but I am passing 7.5 (not a string), so the checks pass. But later in the method Digits performs it's own filter on the value. After that a final comparison takes place and in my case 7.5 and 75 are being compared, which is false so the validation is failing? Forgive me if I have overlooked something (probably have) Thanks Daniel