I recently had the need to extract the value of a Set-Cookie response header in PHP. Google lead me
http_parse_cookie
. Unfortunately,
http_parse_cookie
requires
pecl_http
which isn’t available with PHP out of box, and is a pain to install.
After a bit of research, I found the
SetCookie
class
in
Guzzle
. The implementation is really clean and is the best option for parsing Set-Cookie headers in PHP in my opinion.
Here’s a quick overview of how to use it…
How To Use It
Usage in pretty simple. The easiest way to use Guzzle is via
composer
. Once you’ve
autoloaded
the library, you pass the
Set-Cookie
header as an argument to
GuzzleHttp\Cookie\SetCookie
’s
fromString
method as follows…
Check the Set-Cookie class for a full list of available methods…
Conclusion
I hope this post came in useful for some people. If you have any questions or comments, feel free to drop a note below, or, as always, you can reach me on Twitter as well.
Hi, I'm Max!
I'm a software developer who mainly works in PHP, but loves dabbling in other languages like Go and Ruby. Technical topics that interest me are monitoring, security and performance. I'm also a stickler for good documentation and clear technical writing.
During the day I lead a team of developers and solve challenging technical problems at Rightpoint where I mainly work with the Magento platform. I've also spoken at a number of events.