First step to php api

master
Juan 3 years ago
parent f484dc86a5
commit c3f1b2d794

@ -0,0 +1,16 @@
<?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];
}
Loading…
Cancel
Save