(PECL pecl_http >= 0.10.0)
HttpRequest::addCookies — Add cookies
Add custom cookies.
Note: The request option encodecookies controls whether the cookie values should be urlencode()d.
Note: Affects any request method.
an associative array containing any cookie name/value pairs to add
如果成功则返回 TRUE,失败则返回 FALSE。
Example #1 A HttpRequest::addCookies() example
<?php
$r = new HttpRequest;
$r->addCookies(
array(
"cookie_name" => "cookie value",
)
);
?>