1
0
mirror of https://github.com/php/doc-es.git synced 2026-04-24 15:48:13 +02:00
Files
archived-doc-es/reference/filesystem/functions/realpath-cache-size.xml
T
Pedro Antonio Gil Rodríguez f1ea2cf62f Actualización a la últma versión
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@331298 c90b9560-bf6c-de11-be94-00142212c4b1
2013-09-05 10:34:45 +00:00

86 lines
2.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: 2507bd51b8120c6e568cf11557b0818171586a38 Maintainer: seros Status: ready -->
<!-- Reviewed: yes Maintainer: seros -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.realpath-cache-size">
<refnamediv>
<refname>realpath_cache_size</refname>
<refpurpose>Obtiene el tamaño de la caché de la ruta real</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>int</type><methodname>realpath_cache_size</methodname>
<void/>
</methodsynopsis>
<para>
Obtiene la cantidad de memoria usada por la caché de la ruta real.
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Devuelve la cantidad de memoria que la caché de la ruta real está usando.
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>Ejemplo de <function>realpath_cache_size</function></title>
<programlisting role="php">
<![CDATA[
<?php
var_dump(realpath_cache_size());
?>
]]>
</programlisting>
&example.outputs.similar;
<screen>
<![CDATA[
int(412)
]]>
</screen>
</example>
</para>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>realpath_cache_get</function></member>
<member>
La opción de configuración
<link linkend="ini.realpath-cache-size">realpath_cache_size</link>
</member>
</simplelist>
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->