(PHP 5 >= 5.3.2, PHP 7)
Get realpath cache size
int realpath_cache_size ( void )
Get the amount of memory used by the realpath cache.
Returns:
Returns how much memory realpath cache is using.
Examples:
realpath_cache_size() example
<?php var_dump(realpath_cache_size()); ?>
The above example will output something similar to:
int(412)
See also:
Please login to continue.