显示下拉菜单

get_headers()

« get_extension_funcs | get_html_translation_table »
<?php
$array 
get_headers (
    
// string $url
    
?  // [int $format = 0]
);
?>
结果
$array = [
  
=> 'HTTP/1.0 200 OK',
  
'Age' => '580600',
  
'Cache-Control' => 'max-age=604800',
  
'Content-Type' => 'text/html; charset=UTF-8',
  
'Date' => 'Wed, 24 Apr 2024 03:22:01 GMT',
  
'Etag' => '"3147526947+gzip+ident"',
  
'Expires' => 'Wed, 01 May 2024 03:22:01 GMT',
  
'Last-Modified' => 'Thu, 17 Oct 2019 07:18:26 GMT',
  
'Server' => 'ECAcc (nyd/D125)',
  
'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)