Yaf_Application::environ
PHP function
Edit on GitHub ✎
(Yaf >=1.0.0)
Retrieve the environment
Description
Yaf_Application::environ(): string|null
Retrieve the environment name of the application, which is defined by the yaf.environ directive (or the environ constructor parameter), and defaults to "product".
Parameters Parameters
Return Values
The environment name of the application.
Examples
Yaf_Application::environ() example
php
<?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:
output
product