How to delete cookie in Magento 2?

Magento 2, You can delete the cookie using Magento’s Own Magento\Framework\Stdlib\CookieManagerInterface interface class.

You can delete cookie using deleteCookie() function from CookieManagerInterface Interface. Continue reading “How to delete cookie in Magento 2?”

How to set and get cookie in Magento 2?

Magento 2 You can add/set cookies and get/retrieve the cookie using Magento\Framework\Stdlib\CookieManagerInterface Interface.

By default, You can set the cookie using $_COOKIE with native PHP.

When you are following the coding standard in Magento 2, PHPMd displays the error for $_COOKIE is discouraged in Magento 2. Continue reading “How to set and get cookie in Magento 2?”