當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。