Yaf_Config_Simple::count
PHP function
Edit on GitHub ✎
(Yaf >=1.0.0)
Count configuration entries
Description
Yaf_Config_Simple::count(): int
Returns the number of top-level configuration entries.
Parameters Parameters
Return Values
The number of top-level entries as an integer.
Examples
Yaf_Config_Simple::count example
php
<?php
$config = new Yaf_Config_Simple([
'application' => ['name' => 'MyApp'],
'database' => ['host' => 'localhost'],
]);
// 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:
output
int(2)
int(2)See Also
Yaf_Config_Simple::getYaf_Config_Simple::toArray