PHP 8.5.10 Released!

Yaf_Config_Ini::offsetUnset

(Yaf >=1.0.0)

Yaf_Config_Ini::offsetUnsetRemove a key (ArrayAccess)

Description

public function Yaf_Config_Ini::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_Ini::offsetUnset() example

<?php
/**
 * Assume /etc/myapp/application.ini contains:
 * [common]
 * application.name = "MyApp"
 * database.host    = "localhost"
 * database.port    = 3306
 */
$config = new Yaf_Config_Ini('/etc/myapp/application.ini', 'common');

// Yaf_Config_Ini is read-only: a warning is emitted, nothing is removed
unset($config['database']);

var_dump(isset($config['database']));
?>

The above example will output something similar to:

bool(true)

See Also

add a note

User Contributed Notes

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