File path: dist/twist/Core/Utilities/Cookie.utility.php
Namespace: Twist\Core\Utilities
Extends: Base
delete
— Delete a cookie.
Name | Description |
---|---|
$strName | n/a |
[$strPath = '] | n/a |
[$strDomain = false] | n/a |
[$blRemoveFromGlobal = false] | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$strName = 'foo';
$strPath = ';
$strDomain = false;
$blRemoveFromGlobal = false;
//Call the function delete with the example vars
Twist::Cookie() -> delete($strName, $strPath, $strDomain, $blRemoveFromGlobal);