Yaf_Application::environ

(PECL yaf >=1.0.0)

Yaf_Application::environRetrive environ

Beskrivelse

public void Yaf_Application::environ ( void )

Retrive environ which was defined in yaf.environ which has a default value "product".

Advarsel

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

Parametre

This function has no parameters.

Returnerings Værdier

Eksempler

Eksempel #1 Yaf_Application::environ()example

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

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

The above example will output something similar to:

product
add a note add a note

User Contributed Notes

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