I need a PHP script that reads the HTTP response code for each URL request.
something like
$headers = get_headers($theURL); return substr($headers
You can build and read your own HTTP queries with fsockopen and regular file operations. Check out my earlier answer on this topic:
Are there any other options for rest clients besides CURL?