CacheTool\Proxy\PhpProxy::ini_set PHP Method

ini_set() public method

Gets the value of a configuration option
public ini_set ( string $varname, string $newvalue ) : string
$varname string Not all the available options can be changed using ini_set(). There is a list of all available options in the appendix.
$newvalue string The new value for the option
return string Returns the old value on success, FALSE on failure
    public function ini_set($varname, $newvalue)
    {
        $code = new Code();
        $code->addStatement(sprintf("return ini_set(%s, %s);", var_export($varname, true), var_export($newvalue, true)));
        return $this->adapter->run($code);
    }