[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-includes/ -> class-wp-http-cookie.php (summary)

HTTP API: WP_Http_Cookie class

File Size: 277 lines (7 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

WP_Http_Cookie:: (5 methods):
  __construct()
  test()
  getHeaderValue()
  getFullHeader()
  get_attributes()


Class: WP_Http_Cookie  - X-Ref

Core class used to encapsulate a single cookie object for internal use.

Returned cookies are represented using this class, and when cookies are set, if they are not
already a WP_Http_Cookie() object, then they are turned into one.

__construct( $data, $requested_url = '' )   X-Ref
Sets up this cookie object.

The parameter $data should be either an associative array containing the indices names below
or a header string detailing it.

param: string|array $data {
param: string       $requested_url The URL which the cookie was set on, used for default $domain

test( $url )   X-Ref
Confirms that it's OK to send this cookie to the URL checked against.

Decision is based on RFC 2109/2965, so look there for details on validity.

return: bool true if allowed, false otherwise.
param: string $url URL you intend to send this cookie to

getHeaderValue()   X-Ref
Convert cookie name and value back to header string.

return: string Header encoded cookie name and value.

getFullHeader()   X-Ref
Retrieve cookie header for usage in the rest of the WordPress HTTP API.

return: string

get_attributes()   X-Ref
Retrieves cookie attributes.

return: array {



Generated : Thu Apr 18 08:20:02 2024 Cross-referenced by PHPXref