PHP Conference Ehime 2026

Yaf_Config_Simple::rewind

(Yaf >=1.0.0)

Yaf_Config_Simple::rewindReset iterator to first entry

Açıklama

public function Yaf_Config_Simple::rewind(): void

Rewinds the internal iterator to the first configuration entry.

Bağımsız Değişkenler

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

Dönen Değerler

No value is returned.

Örnekler

Örnek 1 Yaf_Config_Simple::rewind() example

<?php
$config = new Yaf_Config_Simple([
    'application' => ['name' => 'MyApp'],
    'database'    => ['host' => 'localhost'],
]);

$config->next();
echo $config->key(), "\n";

$config->rewind();
echo $config->key(), "\n";
?>

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

database
application

Ayrıca Bakınız

add a note

User Contributed Notes

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