What's the best way to filter a password with php built in filters (SANITIZE and VALIDATE). How can I verify the password length?
With a number should be easy with:
"options" => array(
'min_range' => 6,
'max_range' => 25
)
So in the above example how can check the length?
array(
"filter" => SANITIZE_STRING,
->check length!?!
)
h^H25>'Uand you sanitized it, you ended up changing my strong password. – cryptic ツ Jan 7 at 21:36