Hello all,
I'm trying to read the Http Headers as mentioned in this link here.
http://validator.w3.org/docs/api.html#http_headers
I want to know how it is possible to check the headers with php.
Thanks.
XHTML Validation - Using CURL/HTTP HEADERS
Moderator: General Moderators
- John Cartwright
- Site Admin
- Posts: 11470
- Joined: Tue Dec 23, 2003 2:10 am
- Location: Toronto
- Contact:
Re: XHTML Validation - Using CURL/HTTP HEADERS
Code: Select all
print_r(get_headers('http://validator.w3.org/docs/api.html#http_headers', 1));Re: XHTML Validation - Using CURL/HTTP HEADERS
Thanks for your help!