CacheTool\Proxy\PhpProxy::ini_get PHP Method

ini_get() public method

Gets the value of a configuration option
public ini_get ( string $varname ) : string
$varname string The configuration option name
return string Returns the value of the configuration option as a string on success, or an empty string for null values. Returns FALSE if the configuration option doesn't exist.
    public function ini_get($varname)
    {
        $code = new Code();
        $code->addStatement(sprintf("return ini_get(%s);", var_export($varname, true)));
        return $this->adapter->run($code);
    }