CacheTool\Proxy\PhpProxy::stat_realpath_get PHP Method

stat_realpath_get() public method

Get contents of the realpath cache
Since: 5.3.2
public stat_realpath_get ( ) : array
return array Returns an array of realpath cache entries. The keys are original path entries, and the values are arrays of data items, containing the resolved path, expiration date, and other options kept in the cache.
    public function stat_realpath_get()
    {
        $code = new Code();
        $code->addStatement('return realpath_cache_get();');
        return $this->adapter->run($code);
    }