Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ResponseHeaderBag.php

function ResponseHeaderBag::removeCookie

Removes a cookie from the array, but does not unset it in the browser.

File

vendor/symfony/http-foundation/ResponseHeaderBag.php, line 169

Class

ResponseHeaderBag
ResponseHeaderBag is a container for Response HTTP headers.

Namespace

Symfony\Component\HttpFoundation

Code

public function removeCookie(string $name, ?string $path = '/', ?string $domain = null) : void {
    $path ??= '/';
    unset($this->cookies[$domain][$path][$name]);
    if (empty($this->cookies[$domain][$path])) {
        unset($this->cookies[$domain][$path]);
        if (empty($this->cookies[$domain])) {
            unset($this->cookies[$domain]);
        }
    }
    if (!$this->cookies) {
        unset($this->headerNames['set-cookie']);
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal