(Yaf >=1.0.0)
Yaf_Application::environ — Retrieve the environment
Retrieve the environment name of the application, which is defined by
the yaf.environ directive (or
the environ constructor parameter), and defaults to
"product".
Bu işlevin bağımsız değişkeni yoktur.
The environment name of the application.
Örnek 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());
?>Yukarıdaki örnek şuna benzer bir çıktı üretir:
product