We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I believe im running guzzle 2.5.0 under PHP 8.1, which the parse function more or less looks identical to current master.
example (2 cookies set, one for / and the other /admin) both are sent in a GET even in strict mode
$cookiesHeader = $conn->httpRequest->getHeader('Cookie') var_dump($cookiesHeader); array(1) { [0]=> string(271) "OCSESSID=3fc4524dcf596uued26f5b6481; OCSESSID=8f5a45uu3f340f8b4a7ec145b7" }
but if
$cookies = Header::parse($cookiesHeader); var_dump($cookies); array(1) { [0]=> array(1) { ["OCSESSID"]=> string(26) "8f5a453f340f8b49ea7ec145b7" } }
Thank you !
psr7/src/Header.php
Line 17 in 45b30f9
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I believe im running guzzle 2.5.0 under PHP 8.1, which the parse function more or less looks identical to current master.
example (2 cookies set, one for / and the other /admin) both are sent in a GET even in strict mode
but if
Thank you !
psr7/src/Header.php
Line 17 in 45b30f9
The text was updated successfully, but these errors were encountered: