I was just setting up the validation for a form in which I decided to try using the filter_var function to check the validity of my email address. I can not find out what filter_var actually allows anywhere though (since the documentation is very simple), and I found out that it is allowing an email address like test@test. Doesn't there have to be a .com, .net etc... in the domain?
|
The behavior has changed somewhere around April. See bug #49576 and revision 297350. That e-mail is indeed invalid, or at least that's what the PHP developers understood. The source carries this notice:
The changelog mentions this bug fix for PHP 5.3.3 and PHP 5.2.14. |
|||||||||||||||
|
|
It is a valid email address. It isn't going to work on the Internet (at least, not today), but it is fine for a local address. I would assume that the developers are taking the sensible approach to checking email addresses and not building themselves a system that is guaranteed to go out of date as soon as a new TLD is introduced. We have enough email address syntax checkers that reject |
|||||
|
|
test@test is syntactically valid. From RFC 5321:
Only after this does it say:
This does not necessarily preclude TLD-only domain names. In fact, run the following code:
getmxrr('ua', $array) // Returns true TLD-only domain names (can) have MX records and are in use: http://www.to/ is an example. And here's some valid TLD-only domain name email addresses: vince@ai paul@io root@km joost@tk admin@tt hostmaster@ua Source of example email addresses: Tony Finch – TLDs with MXs |
||||
|
|
|
No, A normal |
|||||||||
|

testcould be a valid host name in a local network so I assume it's correct. – Pekka 웃 Aug 4 '10 at 14:26