====== CookieHandler::DeleteCookie() ====== ---- ===== Definition ===== Removes the current cookie at the end of the session and deletes all related data from storage. void DeleteCookie () ===== Exceptions ===== * **CookieHandlerException:EC_WRITEERROR** //(103)// \\ The neccessary data to delete the cookie could't be written ===== Example ===== $Cookie = new CookieHandler("Testcookie"); try { $Cookie->DeleteCookie(); } catch (CookieHandlerException $e) { // [...] } ~~NOTOC~~