PHP 8.6.0 Beta 3 is available for testing

Yaf_Config_Simple::current

(Yaf >=1.0.0)

Yaf_Config_Simple::currentGet current entry value

Açıklama

public function Yaf_Config_Simple::current(): mixed

Returns the value of the current configuration entry during iteration. Array values are wrapped in a Yaf_Config_Abstract object.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

The value of the current entry, or false if the position is invalid.

Örnekler

Örnek 1 Yaf_Config_Simple::current() example

<?php
$config = new Yaf_Config_Simple([
    'application' => ['name' => 'MyApp'],
    'version'     => '1.0',
]);

$config->rewind();
while ($config->valid()) {
    $value = $config->current();
    if ($value instanceof Yaf_Config_Abstract) {
        echo $config->key(), " => <config node>\n";
    } else {
        echo $config->key(), " => ", $value, "\n";
    }
    $config->next();
}
?>

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

application => <config node>
version => 1.0

Ayrıca Bakınız

add a note

User Contributed Notes

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