Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

$request->server should be HTTP_XXX_XXX #42

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Commands/LaravooleCommand.php
Expand Up @@ -156,7 +156,7 @@ protected function start()

$handle = popen(PHP_BINARY . ' ' . __DIR__ . '/../../src/Entry.php', 'w');
fwrite($handle, serialize($configs));
fclose($handle);
pclose($handle);
}

protected function getPid()
Expand Down
2 changes: 1 addition & 1 deletion src/Wrapper/SwooleHttpWrapper.php
Expand Up @@ -52,7 +52,7 @@ protected function ucHeaders($request)
$new_header = [];
$uc_header = [];
foreach ($request->header as $key => $value) {
$new_header['http_' . $key] = $value;
$new_header['http_' . strtr($key, '-', '_')] = $value;
$uc_header[ucwords($key, '-')] = $value;
}
$server = array_merge($request->server, $new_header);
Expand Down