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
Headers aren't properly added to curl when making a request.
A header array passed to curl_setopt is associative, like this: ["Cache-Control"] => "max-age=0" .
curl_setopt
["Cache-Control"] => "max-age=0"
But it should be a regular indexed array that looks like this: [0] => "Cache-Control: max-age=0".
[0] => "Cache-Control: max-age=0"
Not sure did I use the proper terms but I think you can understand me.
The text was updated successfully, but these errors were encountered:
Understood. Thanks for the PR!
Sorry, something went wrong.
No branches or pull requests
Headers aren't properly added to curl when making a request.
A header array passed to
curl_setopt
is associative, like this:["Cache-Control"] => "max-age=0"
.But it should be a regular indexed array that looks like this:
[0] => "Cache-Control: max-age=0"
.Not sure did I use the proper terms but I think you can understand me.
The text was updated successfully, but these errors were encountered: