Support Authorization header in apache_request_headers()
[hiphop-php.git] / hphp / test / server / fastcgi / tests / headerTest.php
blob529390b3e1e2476c8a5224da380b25bb84817927
1 <?php
3 require_once('test_base.inc');
5 function headerTestController($serverPort) {
6 $args = array('Authorization' => 'foo');
7 var_dump(request(php_uname('n'), $serverPort, "test_headers.php", $args));
10 runTest('headerTest', "headerTestController");