1
0
mirror of https://github.com/php/doc-es.git synced 2026-03-26 00:12:06 +01:00
Files
archived-doc-es/reference/soap/ini.xml
Pedro Antonio Gil Rodríguez 6e788c4928 Revisión
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@326929 c90b9560-bf6c-de11-be94-00142212c4b1
2012-08-01 16:09:25 +00:00

151 lines
4.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: f052ac1bd73549125c3fc3dc68a36d4b0608a16d Maintainer: yago Status: ready -->
<!-- Reviewed: yes Maintainer: seros -->
<section xml:id="soap.configuration" xmlns="http://docbook.org/ns/docbook">
&reftitle.runtime;
&extension.runtime;
<para>
<table>
<title>&ConfigureOptions; de SOAP</title>
<tgroup cols="4">
<thead>
<row>
<entry>&Name;</entry>
<entry>&Default;</entry>
<entry>&Changeable;</entry>
<entry>&Changelog;</entry>
</row>
</thead>
<tbody>
<row>
<entry><link linkend="ini.soap.wsdl-cache-enabled">soap.wsdl_cache_enabled</link></entry>
<entry>1</entry>
<entry>PHP_INI_ALL</entry>
<entry><!-- leave empty, this will be filled by an automatic script --></entry>
</row>
<row>
<entry><link linkend="ini.soap.wsdl-cache-dir">soap.wsdl_cache_dir</link></entry>
<entry>/tmp</entry>
<entry>PHP_INI_ALL</entry>
<entry><!-- leave empty, this will be filled by an automatic script --></entry>
</row>
<row>
<entry><link linkend="ini.soap.wsdl-cache-ttl">soap.wsdl_cache_ttl</link></entry>
<entry>86400</entry>
<entry>PHP_INI_ALL</entry>
<entry><!-- leave empty, this will be filled by an automatic script --></entry>
</row>
<row>
<entry><link linkend="ini.soap.wsdl-cache">soap.wsdl_cache</link></entry>
<entry>1</entry>
<entry>PHP_INI_ALL</entry>
<entry><!-- leave empty, this will be filled by an automatic script --></entry>
</row>
<row>
<entry><link linkend="ini.soap.wsdl-cache-limit">soap.wsdl_cache_limit</link></entry>
<entry>5</entry>
<entry>PHP_INI_ALL</entry>
<entry><!-- leave empty, this will be filled by an automatic script --></entry>
</row>
</tbody>
</tgroup>
</table>
</para>
&ini.descriptions.title;
<para>
<variablelist>
<varlistentry xml:id="ini.soap.wsdl-cache-enabled">
<term>
<parameter>soap.wsdl_cache_enabled</parameter>
<type>integer</type>
</term>
<listitem>
<para>
Activa o desactiva la función de almacenamiento en caché de WSDL.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="ini.soap.wsdl-cache-dir">
<term>
<parameter>soap.wsdl_cache_dir</parameter>
<type>string</type>
</term>
<listitem>
<para>
Define el nombre del directorio donde la extensión SOAP guardará los ficheros en caché.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="ini.soap.wsdl-cache-ttl">
<term>
<parameter>soap.wsdl_cache_ttl</parameter>
<type>integer</type>
</term>
<listitem>
<para>
Define el número de segundos (tiempo de vida) por los que los ficheros en caché serán
usados en lugar de los originales.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="ini.soap.wsdl-cache">
<term>
<parameter>soap.wsdl_cache</parameter>
<type>integer</type>
</term>
<listitem>
<para>
Si la opción <parameter>soap.wsdl_cache_enabled</parameter> está activada, este ajuste
determina el tipo de almacenamiento en caché. Puede ser cualquiera de estos tipos:
<constant>WSDL_CACHE_NONE</constant> (<literal>0</literal>),
<constant>WSDL_CACHE_DISK</constant> (<literal>1</literal>),
<constant>WSDL_CACHE_MEMORY</constant> (<literal>2</literal>) o
<constant>WSDL_CACHE_BOTH</constant> (<literal>3</literal>). También puede
definirse usando el array <parameter>options</parameter> del constructor de
<classname>SoapClient</classname> o de
<classname>SoapServer</classname>.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="ini.soap.wsdl-cache-limit">
<term>
<parameter>soap.wsdl_cache_limit</parameter>
<type>integer</type>
</term>
<listitem>
<para>
Número máximo de ficheros WSDL almacenados en caché de memoria. Si se añaden más ficheros
a una caché de memoria llena, se eliminarán los ficheros más antiguos de la misma.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</section>
<!-- 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
-->