PHP Velho Oeste 2024
add a note add a note

User Contributed Notes 4 notes

up
4
javier
8 years ago
For ghpille at hotmail dot:

Actually, RFC 6265 describes, in section 4.1.1., that quoted or not, the value of a cookie can be specified using "US-ASCII characters excluding CTLs, whitespace DQUOTE, comma, semicolon, and backslash". Therefore, your example is an invalid cookie, according to this document, which replaces RFC 2965, and the value of a "Set-Cookie" header field can be parsed using a simple explode(';', $cookie_field_value) call.
up
3
ghpille at hotmail dot com
12 years ago
I don't think you can split the cookie-line on ";",  since the semicolon is allowed withing double-quotes, eg.:

Set-Cookie:  COOKIE1="a;b;c"; path=/xyz; Max-Age=100
up
-1
marcoigarapava at gmail dot com
13 years ago
Here's a good way to get cookies from a page and then resubimit the data to that page (or acess any other page using the cookies gotten).

<?php

//SOME DATA TO POST
$postData = array
(
'user' => $login,
'pass' => $pass
);

//FIRST POST
$post1 = http_post_fields('http://example.com', $postData);

//GET THE COOKIES STORED TO THE ARRAY $cookie
preg_match('/Set-Cookie: (.*)\b/', $post1, $cookie);
$cookie = (array) http_parse_cookie($cookie[1]);
$cookie = array( 'cookies' => $cookie["cookies"]);

//POST DATA NOW WITH THE COOKIE
$post2 = http_post_fields('http://example.com', $postData, array(), $cookie);
?>
up
-2
tobsn at php dot net
17 years ago
alternative:
<?php

function cookie_parse( $header ) {
       
$cookies = array();
        foreach(
$header as $line ) {
                if(
preg_match( '/^Set-Cookie: /i', $line ) ) {
                       
$line = preg_replace( '/^Set-Cookie: /i', '', trim( $line ) );
                       
$csplit = explode( ';', $line );
                       
$cdata = array();
                        foreach(
$csplit as $data ) {
                               
$cinfo = explode( '=', $data );
                               
$cinfo[0] = trim( $cinfo[0] );
                                if(
$cinfo[0] == 'expires' ) $cinfo[1] = strtotime( $cinfo[1] );
                                if(
$cinfo[0] == 'secure' ) $cinfo[1] = "true";
                                if(
in_array( $cinfo[0], array( 'domain', 'expires', 'path', 'secure', 'comment' ) ) ) {
                                       
$cdata[trim( $cinfo[0] )] = $cinfo[1];
                                }
                                else {
                                       
$cdata['value']['key'] = $cinfo[0];
                                       
$cdata['value']['value'] = $cinfo[1];
                                }
                        }
                       
$cookies[] = $cdata;
                }
        }
        return
$cookies;
}

function
cookie_build( $data ) {
        if(
is_array( $data ) ) {
               
$cookie = '';
                foreach(
$data as $d ) {
                       
$cookie[] = $d['value']['key'].'='.$d['value']['value'];
                }
                if(
count( $cookie ) > 0 ) {
                        return
trim( implode( '; ', $cookie ) );
                }
        }
        return
false;
}

?>

(http://www.seo-blackhat.com/article/the-cookie-backer-php.html)
To Top