PhpExtensions::_ini PHP Method

_ini() protected static method

Note that in HHVM we currently cannot access the loaded ini file.
protected static _ini ( array $data ) : void
$data array INI settings to add.
return void
    protected static function _ini(array $data)
    {
        if (static::_isHhvm()) {
            return;
        }
        foreach ($data as $ini) {
            static::_system(sprintf("echo %s >> %s", $ini, php_ini_loaded_file()));
        }
    }