ドロップダウンリストを表示

get_headers()

« get_extension_funcs | get_html_translation_table »
<?php
$array 
get_headers (
    
// string $url
    
?  // [int $format = 0]
);
?>
結果
$array = [
  
=> 'HTTP/1.0 200 OK',
  
'Accept-Ranges' => 'bytes',
  
'Age' => '380657',
  
'Cache-Control' => 'max-age=604800',
  
'Content-Type' => 'text/html; charset=UTF-8',
  
'Date' => 'Sun, 28 Apr 2024 19:49:40 GMT',
  
'Etag' => '"3147526947"',
  
'Expires' => 'Sun, 05 May 2024 19:49:40 GMT',
  
'Last-Modified' => 'Thu, 17 Oct 2019 07:18:26 GMT',
  
'Server' => 'ECAcc (nyd/D1A2)',
  
'Vary' => 'Accept-Encoding',
  
'X-Cache' => 'HIT',
  
'Content-Length' => '1256',
  
'Connection' => 'close',
]
#1 get_headers  ("http://www.example.com")
#2 get_headers  ("http://www.example.com",
 
1)