Are there any helper libs to read a cookie file in php. I have a cookie file on my local disk and I would like a better way of reading it. I am currently just reading to file like by line and parsing out the values.
|
feedback
|
|
This is pretty simple if you aim to read Netscape's format (e.g. curl saves cookies in COOKIEJAR in this format). First an example (pipes and line numbers are added here and do not occur in real file):
As you can see:
And then, the beefy lines each have 7 tokens seprated with a tab character (
So, now let's make our cookie-file parser.
Finally, here is a demo. | ||||
|
feedback
|
|
I think $_COOKIE is what your looking for. This superglobal can be used to read cookie data... to set it you need to use | |||
|
feedback
|
|
I'm not sure I understand you correctly as it's normally pretty straightforward to set (using
If you are looking for a way of reading a raw cookie directly from your filesystem, without going through a browser, you'll need to specify what format/browser they were written in. The values could have been serialized from a lot of different languages and the end-result of the file might differ from browser to browser. // Edit: More on the browser differences: for example, Mozilla has a format like that and IE something more like that. | |||
|
feedback
|
|
If you are using sessions in PHP, and you are in fact trying to parse the session data on disk, you can use the | |||
|
feedback
|