(Yaf >=1.0.0)
Yaf_Config_Ini::count — Count configuration entries
Returns the number of top-level configuration entries.
У цієї функції немає параметрів.
The number of top-level entries as an integer.
Приклад #1 Yaf_Config_Ini::count() 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');
// Only the top-level entries ("application" and "database") are counted
var_dump(count($config));
var_dump($config->count());
?>Поданий вище приклад виведе щось схоже на:
int(2) int(2)