realpath_cache_size
PHP Manual
PHP Manual»Funciones del Sistema de Archivos»realpath_cache_size

realpath_cache_size

(PHP 5 >= 5.3.2, PHP 7, PHP 8)

realpath_cache_sizeObtiene el tamaño del caché realpath

Descripción

function realpath_cache_size(): int

Obtiene la cantidad de memoria utilizada por el caché realpath.

Parámetros

Esta función no contiene ningún parámetro.

Valores devueltos

Devuelve la cantidad de memoria utilizada por el caché realpath.

Ejemplos

Ejemplo #1 Ejemplo con realpath_cache_size()

<?php
var_dump(realpath_cache_size());
?>

Resultado del ejemplo anterior es similar a:

int(412)

Véase también

To Top