Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Gets the value of a single or all environment variables
<?php getenv(?string $name = null, bool $local_only = false): string|array|false
<?php         }



        if (null === $this->handlesHrefGracefully) {

            $this->handlesHrefGracefully = 'JetBrains-JediTerm' !== getenv('TERMINAL_EMULATOR')

                && (!getenv('KONSOLE_VERSION') || (int) getenv('KONSOLE_VERSION') > 201100);

        }
<?php         if (null === $this->handlesHrefGracefully) {

            $this->handlesHrefGracefully = 'JetBrains-JediTerm' !== getenv('TERMINAL_EMULATOR')

                && (!getenv('KONSOLE_VERSION') || (int) getenv('KONSOLE_VERSION') > 201100);

        }



        if (isset($attr['ellipsis'], $attr['ellipsis-type'])) {
<?php         }




        if (isset($_SERVER['NO_COLOR']) || false !== getenv('NO_COLOR')) {

            return false;

        }
<?php             return false;

        }



        if ('Hyper' === getenv('TERM_PROGRAM')) {

            return true;

        }
<?php         if (\DIRECTORY_SEPARATOR === '\\') {

            return (\function_exists('sapi_windows_vt100_support')

                && @sapi_windows_vt100_support($stream))

                || false !== getenv('ANSICON')

                || 'ON' === getenv('ConEmuANSI')

                || 'xterm' === getenv('TERM');

        }
<?php             return (\function_exists('sapi_windows_vt100_support')

                && @sapi_windows_vt100_support($stream))

                || false !== getenv('ANSICON')

                || 'ON' === getenv('ConEmuANSI')

                || 'xterm' === getenv('TERM');

        }
<?php                 && @sapi_windows_vt100_support($stream))

                || false !== getenv('ANSICON')

                || 'ON' === getenv('ConEmuANSI')

                || 'xterm' === getenv('TERM');

        }



        return stream_isatty($stream);
<?php     private function isWindowsTrueColor(): bool

    {

        $result = 183 <= getenv('ANSICON_VER')

            || 'ON' === getenv('ConEmuANSI')

            || 'xterm' === getenv('TERM')

            || 'Hyper' === getenv('TERM_PROGRAM');
<?php     private function isWindowsTrueColor(): bool

    {

        $result = 183 <= getenv('ANSICON_VER')

            || 'ON' === getenv('ConEmuANSI')

            || 'xterm' === getenv('TERM')

            || 'Hyper' === getenv('TERM_PROGRAM');
<?php     {

        $result = 183 <= getenv('ANSICON_VER')

            || 'ON' === getenv('ConEmuANSI')

            || 'xterm' === getenv('TERM')

            || 'Hyper' === getenv('TERM_PROGRAM');



        if (!$result) {
<?php         $result = 183 <= getenv('ANSICON_VER')

            || 'ON' === getenv('ConEmuANSI')

            || 'xterm' === getenv('TERM')

            || 'Hyper' === getenv('TERM_PROGRAM');



        if (!$result) {

            $version = sprintf(
<?php     protected function getDump($data, $key = null, int $filter = 0): ?string

    {

        if (null === $flags = $this->varDumperConfig['flags']) {

            $flags = getenv('DUMP_LIGHT_ARRAY') ? CliDumper::DUMP_LIGHT_ARRAY : 0;

            $flags |= getenv('DUMP_STRING_LENGTH') ? CliDumper::DUMP_STRING_LENGTH : 0;

            $flags |= getenv('DUMP_COMMA_SEPARATOR') ? CliDumper::DUMP_COMMA_SEPARATOR : 0;

        }
<?php     {

        if (null === $flags = $this->varDumperConfig['flags']) {

            $flags = getenv('DUMP_LIGHT_ARRAY') ? CliDumper::DUMP_LIGHT_ARRAY : 0;

            $flags |= getenv('DUMP_STRING_LENGTH') ? CliDumper::DUMP_STRING_LENGTH : 0;

            $flags |= getenv('DUMP_COMMA_SEPARATOR') ? CliDumper::DUMP_COMMA_SEPARATOR : 0;

        }
<?php         if (null === $flags = $this->varDumperConfig['flags']) {

            $flags = getenv('DUMP_LIGHT_ARRAY') ? CliDumper::DUMP_LIGHT_ARRAY : 0;

            $flags |= getenv('DUMP_STRING_LENGTH') ? CliDumper::DUMP_STRING_LENGTH : 0;

            $flags |= getenv('DUMP_COMMA_SEPARATOR') ? CliDumper::DUMP_COMMA_SEPARATOR : 0;

        }



        $cloner = new VarCloner();
<?php     protected function setUp(): void

    {

        if (!$this->hasBroker && getenv('KAFKA_BROKER')) {

            $this->broker = getenv('KAFKA_BROKER');

            $this->hasBroker = true;

        }