Answer Posted / vileye
There are various ways to validate a data in php. It depends
on what you want to validate. The various validations are as
follows:
FILTER_VALIDATE_INT Validate value as integer, optionally
from the specified range
FILTER_VALIDATE_BOOLEAN Return TRUE for "1", "true", "on"
and "yes", FALSE for "0", "false", "off", "no", and "", NULL
otherwise
FILTER_VALIDATE_FLOAT Validate value as float
FILTER_VALIDATE_REGEXP Validate value against regexp, a
Perl-compatible regular expression
FILTER_VALIDATE_URL Validate value as URL, optionally with
required components
FILTER_VALIDATE_EMAIL Validate value as e-mail
FILTER_VALIDATE_IP Validate value as IP address, optionally
only IPv4 or IPv6 or not from private or reserved ranges
Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What is meant by public, private, protected, static and final scopes?
What is the default session time in php?
When should you use a stored procedure?
How to delete a file from the system?
Where can I find php ini file?
What is the difference between characters 34 and x34?
What does trim () do in javascript?
What is the empty function?
What is php constructor?
How check field is empty or not in php?
How many escape sequences are recognized in double-quoted strings?
What is the difference between php traits vs interfaces?
What is the use of preg_match in php?
I am trying to assign a variable the value of 0123, but it keeps coming up with a different number, what is the problem?
What is the importance of "method" attribute in a html form?