Yaf_Application::getConfig

(PECL yaf >=1.0.0)

Yaf_Application::getConfigRetrive the config instance

Beskrivelse

public Yaf_Config_Abstract Yaf_Application::getConfig ( void )

Advarsel

This function is currently not documented; only its argument list is available.

Parametre

This function has no parameters.

Returnerings Værdier

A Yaf_Config_Abstract instance

Eksempler

Eksempel #1 Yaf_Application::getConfig()example

<?php
$config 
= array(
    
"application" => array(
        
"directory" => realpath(dirname(__FILE__)) . "/application",
    ),
);

/** Yaf_Application */
$application = new Yaf_Application($config);
print_r($application->getConfig());
?>

The above example will output something similar to:

Yaf_Config_Simple Object
(
    [_config:protected] => Array
        (
            [application] => Array
                (
                    [directory] => /home/laruence/local/www/htdocs/application
                )

        )

    [_readonly:protected] => 1
)
add a note add a note

User Contributed Notes

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