realpath_cache_size() 函数是 PHP 中的内置函数,允许您获取或设置真实路径缓存的大小(以字节为单位)。
用法:
realpath_cache_size(): int
参数:该函数不接受任何参数。
返回值:此函数返回实际路径缓存的当前大小(以字节为单位)。
示例 1:下面的程序演示了realpath_cache_size()函数。
PHP
<?php
$cache_size = realpath_cache_size();
echo "The current size of the realpath cache is " .
$cache_size . " bytes.";
?>
输出:
The current size of the realpath cache is 538 bytes.
示例 2:下面的程序演示了realpath_cache_size()函数。
PHP
<?php
$threshold = 10485760;
$cache_size = realpath_cache_size();
if ($cache_size > $threshold) {
echo "The current size of the realpath cache
is greater than the threshold.";
} else {
echo "The current size of the realpath cache is less
than or equal to the threshold.";
}
?>
输出:
The current size of the realpath cache is less than or equal to the threshold.
参考: https://www.php.net/manual/en/function.realpath-cache-size.php
相关用法
- PHP realpath_cache_get()用法及代码示例
- PHP realpath( )用法及代码示例
- PHP readfile()用法及代码示例
- PHP readdir()用法及代码示例
- PHP read_exif_data()用法及代码示例
- PHP readline_add_history()用法及代码示例
- PHP readline()用法及代码示例
- PHP rename()用法及代码示例
- PHP rewind()用法及代码示例
- PHP restore_error_handler()用法及代码示例
- PHP restore_exception_handler()用法及代码示例
- PHP reset()用法及代码示例
- PHP rewinddir()用法及代码示例
- PHP require()和include()的区别用法及代码示例
- PHP require()和require_once()的区别用法及代码示例
- PHP round()用法及代码示例
- PHP rmdir()用法及代码示例
- PHP rad2deg()用法及代码示例
- PHP rand()用法及代码示例
- PHP random_int()用法及代码示例
- PHP range()用法及代码示例
- PHP rawurldecode()用法及代码示例
- PHP rawurlencode()用法及代码示例
- PHP rsort()用法及代码示例
- PHP rtrim()用法及代码示例
注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP realpath_cache_size() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。