You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
317 B
16 lines
317 B
3 years ago
|
<?php
|
||
|
header('Content-type: text/plain;charset=utf-8');
|
||
|
//print_r($_SERVER);
|
||
|
foreach(array('REQUEST_METHOD',
|
||
|
'REDIRECT_URL',
|
||
|
'QUERY_STRING',
|
||
|
'REQUEST_URI',
|
||
|
'REQUEST_TIME_FLOAT',
|
||
|
'REQUEST_TIME') as $key)
|
||
|
{
|
||
|
echo "\n[".$key."] = ".$_SERVER[$key];
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|