up vote 1 down vote favorite
2
share [g+] share [fb]

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.

link|improve this question
feedback

4 Answers

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):

01 | # Netscape HTTP Cookie File
02 | # http://curl.haxx.se/rfc/cookie_spec.html
03 | # This file was generated by libcurl! Edit at your own risk.
04 | 
05 | .google.com    TRUE    /   FALSE   1305843382  cookiename  the value
06 | .yahoo.com TRUE    /   FALSE   1305843382  another_cookie  it's value
07 |

As you can see:

  1. We might have comment lines denoted with # as the first character.
  2. We might have blank lines

And then, the beefy lines each have 7 tokens seprated with a tab character (\t). These are defined here:

  1. domain - The domain that created AND that can read the variable.
  2. flag - A TRUE/FALSE value indicating if all machines within a given domain can access the variable. This value is set automatically by the browser, depending on the value you set for domain.
  3. path - The path within the domain that the variable is valid for.
  4. secure - A TRUE/FALSE value indicating if a secure connection with the domain is needed to access the variable.
  5. expiration - The UNIX time that the variable will expire on. UNIX time is defined as the number of seconds since Jan 1, 1970 00:00:00 GMT.
  6. name - The name of the variable.
  7. value - The value of the variable.

So, now let's make our cookie-file parser.

// read the file
$lines = file('path/to/cookies.txt');

// var to hold output
$trows = '';

// iterate over lines
foreach($lines as $line) {

  // we only care for valid cookie def lines
  if($line[0] != '#' && substr_count($line, "\t") == 6) {

    // get tokens in an array
    $tokens = explode("\t", $line);

    // trim the tokens
    $tokens = array_map('trim', $tokens);

    // let's convert the expiration to something readable
    $tokens[4] = date('Y-m-d h:i:s', $tokens[4]);

    // we can do different things with the tokens, here we build a table row
    $trows .= '<tr></td>' . implode('</td><td>', $tokens) . '</td></tr>' . PHP_EOL;

    // another option, make arrays to do things with later,
    // we'd have to define the arrays beforehand to use this
    // $domains[] = $tokens[0];
    // flags[] = $tokens[1];
    // and so on, and so forth

  }

}

// complete table and send output
// not very useful as it is almost like the original data, but then ...
echo '<table>'.PHP_EOL.'<tbody>'.PHP_EOL.$trows.'</tbody>'.PHP_EOL.'</table>';

Finally, here is a demo.

link|improve this answer
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 setcookie() More can be found on the PHP website under $_COOKIE superglobal

link|improve this answer
feedback

I'm not sure I understand you correctly as it's normally pretty straightforward to set (using setcookie) and read a cookie in PHP from your scripts:

$value = $_COOKIE['mycookie'];

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.

link|improve this answer
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 unserialize() function on the contents of that file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown