blob: 9d957a5908df3bd1ca5df51a9d0f6df93a342b5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
function getHeader($url){
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
$response = curl_exec($ch);
$header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);
$header = substr($response, 0, $header_size);
return $header;
}
|