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