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
In r 1.1.1 line list ($key, $value) = explode(': ', $line); _extractCurlHeaders
was changed to list ($key, $value) = explode(':', $line);
': ' with space -> ':' without space. So header Location: http://foo.bar bocomes: 'Location'=>'http'
The text was updated successfully, but these errors were encountered:
Great, thanks for this reporting. We will take a look on it in the next days!
Sorry, something went wrong.
#59 Added functionalTest & fixed issue
853e27b
Fixed in v1.1.2 - https://github.com/linslin/Yii2-Curl/releases/tag/1.1.2
linslin
No branches or pull requests
In r 1.1.1
line
list ($key, $value) = explode(': ', $line);
_extractCurlHeaders
was changed to
list ($key, $value) = explode(':', $line);
': ' with space -> ':' without space.
So header Location: http://foo.bar bocomes:
'Location'=>'http'
The text was updated successfully, but these errors were encountered: