PHP 8.6.0 Beta 3 is available for testing

Yaf_Config_Abstract::set

(Yaf >=1.0.0)

Yaf_Config_Abstract::setSet a configuration value

Descrizione

abstract public function Yaf_Config_Abstract::set(string $name, mixed $value): bool

Sets a configuration value. This method is abstract and must be implemented by subclasses. Read-only configurations will reject modifications.

Elenco dei parametri

name

The configuration key to set.

value

The value to assign.

Valori restituiti

Returns true on success, or false on failure (e.g. when the configuration is read-only).

Esempi

Example #1 Yaf_Config_Abstract::set() example

<?php
$config = new Yaf_Config_Simple(['env' => 'development']);
var_dump($config->set('env', 'production'));
echo $config->env, "\n";

// Read-only implementations reject the modification
$ini = new Yaf_Config_Ini('/etc/myapp/application.ini', 'common');
var_dump($ini->set('env', 'production'));
?>

Il precedente esempio visualizzerà qualcosa simile a:

bool(true)
production
bool(false)

Vedere anche:

add a note

User Contributed Notes

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