PHP 8.6.0 Beta 3 is available for testing

Yaf_Config_Ini::set

(Yaf >=1.0.0)

Yaf_Config_Ini::setSet a configuration value

Açıklama

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

Attempts to set a configuration value. Since Yaf_Config_Ini is always read-only, this method always fails and emits a warning.

Bağımsız Değişkenler

name

The configuration key to set.

value

The value to assign.

Dönen Değerler

Always returns false and emits a warning, because Yaf_Config_Ini is read-only.

Örnekler

Örnek 1 Yaf_Config_Ini::set() 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');

// Read-only: the assignment always fails, and a warning is emitted
var_dump($config->set('database.host', '192.0.2.10'));

echo $config->get('database.host'), "\n";
?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

bool(false)
localhost

Ayrıca Bakınız

add a note

User Contributed Notes

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