WINCACHE_RPLIST_FILEINFO(3) 1 WINCACHE_RPLIST_FILEINFO(3)
wincache_rplist_fileinfo - Retrieves information about resolve file path cache
SYNOPSIS
array wincache_rplist_fileinfo ([bool $summaryonly = false])
DESCRIPTION
Retrieves information about cached mappings between relative file paths and corresponding absolute file paths.
RETURN VALUES
Array of meta data about the resolve file path cache or FALSE on failure
The array returned by this function contains the following elements:
o total_file_count - total number of file path mappings stored in the cache
o rplist_entries - an array that contains the information about all the cached file paths:
o resolve_path - path to a file
o subkey_data - corresponding absolute path to a file
EXAMPLES
Example #1
A wincache_rplist_fileinfo(3) example
<pre>
<?php
print_r(wincache_rplist_fileinfo());
?>
</pre>
The above example will output:
Array
(
[total_file_count] => 5
[rplist_entries] => Array
(
[1] => Array
(
[resolve_path] => checkcache.php
[subkey_data] => c:inetpubwwwroot|c:inetpubwwwrootcheckcache.php
)
[2] => Array (...iterates for each cached file)
)
)
SEE ALSO
wincache_fcache_meminfo(3), wincache_fcache_fileinfo(3), wincache_ocache_fileinfo(3), wincache_ocache_meminfo(3), wincache_rplist_mem-
info(3), wincache_refresh_if_changed(3), wincache_ucache_meminfo(3), wincache_ucache_info(3), wincache_scache_info(3), wincache_scache_mem-
info(3).
PHP Documentation Group WINCACHE_RPLIST_FILEINFO(3)