getallheaders
(PHP3 , PHP4)
getallheaders ---&">nbsp; 取得所有HTTP请求标头
语法 : array getallheaders (void)
说明 :
此函数传回现行的请求的所有HTTP标头,传回值是一数组型态。
Example :
<?php
$headers = getallheaders();
while (list ($header, $value) = each ($headers)) {
echo "$header: $value<br>\n";
}
?>
这个范例将会显示现行的请求的所有标头。
注意 : 当PHP是执行在Apache模组时,getallheaders( )才有效
时间: 2024-09-15 12:47:04