nginx下用getallheaders
Posted 陈可
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx下用getallheaders相关的知识,希望对你有一定的参考价值。
if (!function_exists(‘getallheaders‘)) {
function getallheaders()
{
foreach ($_SERVER as $name => $value) {
if (substr($name, 0, 5) == ‘HTTP_‘) {
$headers[str_replace(‘ ‘, ‘-‘, ucwords(strtolower(str_replace(‘_‘, ‘ ‘, substr($name, 5)))))] = $value;
}
}
return $headers;
}
}
以上是关于nginx下用getallheaders的主要内容,如果未能解决你的问题,请参考以下文章
windows下用nginx配置https服务器( OpenSSL创建证书)
Windows下用FFmpeg+nginx+rtmp搭建环境实现推流