Page MenuHomePhabricator
Paste P109

apache_get_headers() difference
ActivePublic

Authored by Joe on Nov 26 2014, 11:26 AM.
Tags
None
Referenced Files
F16314: apache_get_headers()_difference
Nov 26 2014, 11:26 AM
Subscribers
None
HHVM:
array(5) {
["User-Agent"]=>
string(11) "curl/7.35.0"
["Host"]=>
string(21) "commons.wikimedia.org"
["Authorization"]=>
string(4) "blah"
["Accept"]=>
string(3) "*/*"
["Proxy-Connection"]=>
string(10) "Keep-Alive"
}
Zend:
array(7) {
["User-Agent"]=>
string(11) "curl/7.35.0"
["Host"]=>
string(21) "commons.wikimedia.org"
["Accept"]=>
string(3) "*/*"
["Proxy-Connection"]=>
string(10) "Keep-Alive"
["Authorization"]=>
string(4) "blah"
["Content-Length"]=>
string(2) "12"
["Content-Type"]=>
string(33) "application/x-www-form-urlencoded"
}