当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP realpath_cache_size()用法及代码示例


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


相关用法


注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP realpath_cache_size() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。