(Yaf >=1.0.0)
Yaf_Application::environ — Retrive environ
Retrive environ which was defined in yaf.environ which has a default value "product".
This function has no parameters.
Example #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