Apparently all results from:
$app->request->getHeaders();
are in upper case.
From HTTP1.1 specs, HTTP headers are case insensitive. But it looks like Phalcon always converts them to uppercase. Is this correct? Will Phalcon always convert headers to uppercase?
There is no problem whatsoever with this behaviour, I just want to make sure I can always rely (PHP wise) on the uppercase version when using $app->request->getHeader("MY-HEADER")
even though My-Header
was my original header.
Edit
Ohhh, and converts dashes (and maybe others) to underscores !??