PHP | realpath_cache_size 函數

怎樣獲取真實路徑緩衝區的大小

最近更新時間 2021-01-19 18:50:26

realpath_cache_size 函數獲取真實路徑緩衝區的大小。

函數定義

realpath_cache_size ( ) : int
// 源文件位於:ext/standard/filestat.c
# 函數定義

PHP_FUNCTION(realpath_cache_size)
{
  ZEND_PARSE_PARAMETERS_NONE();

  RETURN_LONG(realpath_cache_size());
}

參數

  • checkNone - 無。

返回值

  • checkint - 返回真實路徑緩存區使用內存的用量。

示例1: - 使用 realpath_cache_size() 函數獲取緩存區內存的使用量。

<?php
/**
 * PHP realpath_cache_size() 函數獲取緩存區內存的使用量。
 *
 * @since Version 1.0.0
 * @filesource
 */

// 獲取緩存使用量
echo realpath_cache_size();
119035
rss_feed