summaryrefslogtreecommitdiffstats
path: root/third_party/lighttpd/win/php5/compat-shim.php
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/lighttpd/win/php5/compat-shim.php')
-rw-r--r--third_party/lighttpd/win/php5/compat-shim.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/third_party/lighttpd/win/php5/compat-shim.php b/third_party/lighttpd/win/php5/compat-shim.php
deleted file mode 100644
index 95be9b4..0000000
--- a/third_party/lighttpd/win/php5/compat-shim.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-// This is a compat shim to make our php-cgi act more like apache mod_php.
-// http://www.qijoo.com/fapm/PHP/en/function.getallheaders.html
-// Well, sort of, lighttpd gives us headers like HTTP_UPPERCASE_WEE, and so
-// we do some ugly php to make that Uppercase-Wee...
-function getallheaders() {
- foreach($_SERVER as $name => $value) {
- if(substr($name, 0, 5) == 'HTTP_') {
- $name = strtolower(substr($name, 5));
- $name = join("-", array_map('ucwords', explode("_", $name)));
- $headers[$name] = $value;
- }
- }
- return $headers;
-}
-?>