PHP 8.6.0 Beta 2 available for testing

Yaf_Config_Simple::offsetUnset

(Yaf >=1.0.0)

Yaf_Config_Simple::offsetUnsetRemove a key (ArrayAccess)

Description

public function Yaf_Config_Simple::offsetUnset(mixed $name): void

Removes a configuration entry by key. This method is called when unset() is used with array syntax on a configuration object.

Parameters

name

The configuration key to remove.

Return Values

No value is returned. A warning is emitted if the configuration is read-only.

Examples

Example #1 Yaf_Config_Simple::offsetUnset() example

<?php
$config = new Yaf_Config_Simple([
    'cache' => ['enable' => true],
    'env'   => 'development',
]);

unset($config['cache']);
var_dump(isset($config['cache']));

// Read-only configurations cannot be modified: a warning is emitted
$frozen = new Yaf_Config_Simple(['env' => 'development'], true);
unset($frozen['env']);
var_dump(isset($frozen['env']));
?>

The above example will output something similar to:

bool(false)
bool(true)

See Also

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top