have some headers like:
HTTP/1.1 100 Continue
HTTP/1.1 302 Found
HTTP/1.1 200 OK
HTTP/1.1 400 Not Found
so, I need to get 2 parts:
[200] => [OK]
[400] => [Not Found]
I need a way to use preg_match_all and get those values, but need to preserve the spaces at Not Found
have this code:
preg_match_all( '/([0-9]{3}) ([A-Za-z0-9+]*)/', $headers, $matches );
Works with 1-3 example headers.
Any ideas?

list($http, $status, $msg) = explode(' ', $line, 3);– Wiseguy Feb 9 '12 at 19:38preg_match_all. With this structure,explodeshould suffice. – Josh Feb 9 '12 at 19:38