Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

get header respnse code php curl

$url = 'http://www.example.com';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HEADER, true);    // we want headers
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$output = curl_exec($ch);
$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

echo 'HTTP code: ' . $httpcode;
 
PREVIOUS NEXT
Tagged: #header #respnse #code #php #curl
ADD COMMENT
Topic
Name
3+5 =