Yaf_Application::environ

(Yaf >=1.0.0)

Yaf_Application::environRetrieve the environment

Açıklama

public function Yaf_Application::environ(): ?string

Retrieve the environment name of the application, which is defined by the yaf.environ directive (or the environ constructor parameter), and defaults to "product".

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

The environment name of the application.

Örnekler

Ö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
add a note

User Contributed Notes

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