Search Results

4
votes

Is there a php library for email address validation?

I've now collated test cases from Cal Henderson, Dave Child, Phil Haack, Doug Lovell and RFC 3696. 158 test addresses in all. I ran all these tests against all the validators I could find. …
0
votes

Why doesn’t my email regex for PHP work?

I've now collated test cases from Cal Henderson, Dave Child, Phil Haack, Doug Lovell and RFC 3696. 158 test addresses in all. I ran all these tests against all the validators I could find. …
0
votes

What alternatives are there for PHPLint that run under Windows?

PHPLint now runs under Windows. The download page is currently here: http://www.icosaedro.it/phplint/download-windows. …
0
votes

DOMNode to DOMElement in php

You don't need to do any explicit typecasting, just check if your DOMNode object has a nodeType of XML_ELEMENT_NODE. PHP will be perfectly happy with this. If you use …
1
vote

Which characters make a url invalid?

In your supplementary question you asked if www.example.com/file[/].html is a valid URL. That URL isn't valid because a URL is a type of URI and a valid URI must have a scheme …