Query: wincache_rplist_fileinfo
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
WINCACHE_RPLIST_FILEINFO(3) 1 WINCACHE_RPLIST_FILEINFO(3) wincache_rplist_fileinfo - Retrieves information about resolve file path cacheSYNOPSISarray wincache_rplist_fileinfo ([bool $summaryonly = false])DESCRIPTIONRetrieves information about cached mappings between relative file paths and corresponding absolute file paths.RETURN VALUESArray 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 fileEXAMPLESExample #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 ALSOwincache_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)
Related Man Pages |
---|
array_map(3) - php |
wincache_refresh_if_changed(3) - php |
svn_log(3) - php |
wincache_fcache_fileinfo(3) - php |
wincache_ucache_info(3) - php |
Similar Topics in the Unix Linux Community |
---|
absolute path |
Array not surviving while loop |
Delimited File to 2D Array |
Syntax error near unexpected token '(' |
Bash Array connectin to another Array |