aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/headers.php
blob: d500b16f45436fce8dc780b695adf4b8d4782f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

header( "Sample-Header: Hello World" );

$headers = array();

foreach( $_SERVER as $key => $value ) {

	$key = str_replace( "_" , "-" , substr( $key , 0 , 5 ) == "HTTP_" ? substr( $key , 5 ) : $key );
	$headers[ $key ] = $value;

}

foreach( explode( "_" , $_GET[ "keys" ] ) as $key ) {
	echo "$key: " . @$headers[ strtoupper( $key ) ] . "\n";
}