CacheTool\Proxy\OpcacheProxy::opcache_version PHP Method

opcache_version() public method

public opcache_version ( ) : string
return string
    public function opcache_version()
    {
        $code = new Code();
        $code->addStatement('return phpversion("Zend OPcache");');
        return $this->adapter->run($code);
    }