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
How can we submit from without a submit button?
Does php need html?
What is difference between python and php?
Does php support function overloading?
What is == and === in php?
What is php written in?
Is facebook still written in php?
Explain what is the function file_get_contents() usefull for?
How can you retrieve data from the mysql database using php?
How to find length of an array in php ?
Tell me will a comparison of an integer 12 and a string "13" work in php?
How does session work in php?
Does php class need constructor?
What is the importance of "method" attribute in a html form?
How do I install php?