1

What is the cookie Jar class from Buzz used for?

https://github.com/kriswallsmith/Buzz/blob/master/lib/Buzz/Cookie/Jar.php

For example when I'm making a request:

$browser = new Buzz\Browser();
$response = $browser->get('http://www.google.com');

How should i use the cookie thingy?

wintersolutions
  • 5,173
  • 5
  • 30
  • 51
ellabeauty
  • 2,529
  • 3
  • 21
  • 25

1 Answers1

1

The cookies for your requests are stored in there. If you want to keep them you have to persist this cookie jar.

wintersolutions
  • 5,173
  • 5
  • 30
  • 51