Exibir a lista drop-down

get_headers()

« get_extension_funcs | get_html_translation_table »
<?php
$array 
get_headers (
    
// string $url
    
?  // [int $format = 0]
);
?>
resultado
$array = [
  
=> 'HTTP/1.0 200 OK',
  
=> 'Age: 143629',
  
=> 'Cache-Control: max-age=604800',
  
=> 'Content-Type: text/html; charset=UTF-8',
  
=> 'Date: Fri, 19 Apr 2024 15:26:14 GMT',
  
=> 'Etag: "3147526947+gzip+ident"',
  
=> 'Expires: Fri, 26 Apr 2024 15:26:14 GMT',
  
=> 'Last-Modified: Thu, 17 Oct 2019 07:18:26 GMT',
  
=> 'Server: ECAcc (nyd/D14C)',
  
=> 'Vary: Accept-Encoding',
  
10 => 'X-Cache: HIT',
  
11 => 'Content-Length: 1256',
  
12 => 'Connection: close',
]
Exemplos
#1 get_headers  ("http://www.example.com")
#2 get_headers  ("http://www.example.com",
 
1)