php8.5
Home/ Manual/ yaf / yaf_request_abstract/ Yaf_Request_Abstract::getEnv

Yaf_Request_Abstract::getEnv

PHP function Edit on GitHub ✎

(Yaf >=1.0.0)

Retrieve an ENV variable

Description

Yaf_Request_Abstract::getEnv(string $name, [mixed $default]): mixed

Retrieves a ENV variable.

Parameters

name

The variable name.

default

The value to return if the variable is not found.

Return Values

The variable value, or default if it is not found.

Examples

Yaf_Request_Abstract::getEnv example

php
<?php
class IndexController extends Yaf_Controller_Abstract
{
    public function indexAction()
    {
        // Assuming the process runs with APPLICATION_ENV=development
        $env = $this->getRequest()->getEnv("APPLICATION_ENV", "production");

        var_dump($env);
    }
}
?>

The above example will output something similar to:

output
string(11) "development"

See Also

  • Yaf_Request_Abstract::getQuery
  • Yaf_Request_Abstract::getRequest
  • Yaf_Request_Abstract::getPost
  • Yaf_Request_Abstract::getCookie
  • Yaf_Request_Abstract::getFiles
  • Yaf_Request_Abstract::getParam

Source: reference/yaf/yaf_request_abstract/getenv.xml · from the official PHP manual (php/doc-en)