(Yaf >=1.0.0)
Yaf_Config_Ini::count — Count configuration entries
Returns the number of top-level configuration entries.
This function has no parameters.
The number of top-level entries as an integer.
Example #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());
?>The above example will output something similar to:
int(2) int(2)