Function __global->persistent_cache_delete
Definitions
sources/caches.php
- Delete data from the persistent cache.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $key | mixed | No | No | required parameter | N/A | N/A | Key name |
| $substring | boolean | No | No | False | N/A | N/A | Whether we are deleting via substring |
Preview
Code (PHP)
/**
* Delete data from the persistent cache.
*
* @param mixed $key Key name
* @param boolean $substring Whether we are deleting via substring
*/
function persistent_cache_delete($key, bool $substring = false)
* Delete data from the persistent cache.
*
* @param mixed $key Key name
* @param boolean $substring Whether we are deleting via substring
*/
function persistent_cache_delete($key, bool $substring = false)
sources/minikernel.php
- Delete data from the persistent cache.(In minikernel, this does nothing).
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $key | mixed | No | No | required parameter | N/A | N/A | Key name |
| $substring | boolean | No | No | False | N/A | N/A | Whether we are deleting via substring |
Preview
Code (PHP)
/**
* Delete data from the persistent cache.(In minikernel, this does nothing).
*
* @param mixed $key Key name
* @param boolean $substring Whether we are deleting via substring
*/
function persistent_cache_delete($key, bool $substring = false)
* Delete data from the persistent cache.(In minikernel, this does nothing).
*
* @param mixed $key Key name
* @param boolean $substring Whether we are deleting via substring
*/
function persistent_cache_delete($key, bool $substring = false)

