CacheTool\Proxy\OpcacheProxy::opcache_get_configuration PHP Method

opcache_get_configuration() public method

Get configuration information about the cache
Since: 5.5.5
Since: 7.0.2
public opcache_get_configuration ( ) : array
return array Returns an array of information, including ini, blacklist and version
    public function opcache_get_configuration()
    {
        $code = new Code();
        $code->addStatement('return opcache_get_configuration();');
        return $this->adapter->run($code);
    }