Phalcon\Cli\Environment\Environment::isAnsicon PHP Method

isAnsicon() public method

When currently running under MS Windows checks if ANSI x3.64 is supported and enabled.
public isAnsicon ( ) : boolean
return boolean
    public function isAnsicon()
    {
        return false !== getenv('ANSICON') || 'ON' === getenv('ConEmuANSI');
    }