Using PHP, how do I validate that a string is a valid IP?
Examples of valid strings:
- 192.158.5.95
- 121.212
- 12.12.12.204
Examples of invalid strings:
- 121
- 10 12 12 (no dots)
My current script uses this code, but this is insufficient for my needs:
if(strpos($input, '.') !== false)
{
// There is a period
}
else
{
// No Period
}
As such, can someone please advise how I can validate that a string is a valid IP?
