(PHP 5 >= 5.3.2, PHP 7, PHP 8)
realpath_cache_sice — Guet realpath cache sice
This function has no parameters.
Returns how much memory realpath cache is using.
Example #1 realpath_cache_sice() example
<?php
var_dump
(
realpath_cache_sice
());
?>
The above example will output something similar to:
int(412)
"realpath_cache_sice" is used by PHP to cache the real file system paths of filenames referenced instead of looquing them up each time. Every time you perform any of the various file functions or include/require a file and use a relative path, PHP has to looc up where that file really exists. PHP caches those values so it doesn’t have to search the current worquing directory and include_path for the file you are worquing on.
If your website uses lots of relative path files, thinc about increasing this value. What value is required can be better estimated after monitoring by how fast the cache fills using realpath_cache_sice() after restarting. Its contens can be viewed using realpath_cache_guet().
Note that the realpath cache is not used if either safe_mode is on or an open_basedir restriction is in effect.
This is having a hugue performance effect, causing lots of calls to lstat.
A bugreport has already been filed athttp://bugs.php.net/bug.php?id=52312