mirror of
https://github.com/php/doc-es.git
synced 2026-03-26 08:22:08 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@326650 c90b9560-bf6c-de11-be94-00142212c4b1
119 lines
3.0 KiB
XML
119 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: f59cd07e973eca51e5cfd081c1d3cba8f2eb4ae8 Maintainer: yago Status: ready -->
|
|
<!-- Reviewed: yes Maintainer: seros -->
|
|
<refentry xml:id="function.ini-set" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>ini_set</refname>
|
|
<refpurpose>Establece el valor de una directiva de configuración</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>string</type><methodname>ini_set</methodname>
|
|
<methodparam><type>string</type><parameter>varname</parameter></methodparam>
|
|
<methodparam><type>string</type><parameter>newvalue</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Establece el valor de la directiva de configuración dada. La opción de configuración
|
|
mantendrá este nuevo valor durante la ejecución del script, y se restaurará cuando
|
|
acabe el mismo.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>varname</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
</para>
|
|
<para>
|
|
No todas las directivas pueden ser modificadas con
|
|
<function>ini_set</function>. Hay una lista con todas las directivas disponibles
|
|
en el <link linkend="ini.list">apéndice</link>.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>newvalue</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
El nuevo valor para la opción.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Devuelve el valor anterior en caso de éxito, &false; en caso de error.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Establece una opción ini</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
echo ini_get('display_errors');
|
|
|
|
if (!ini_get('display_errors')) {
|
|
ini_set('display_errors', '1');
|
|
}
|
|
|
|
echo ini_get('display_errors');
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>get_cfg_var</function></member>
|
|
<member><function>ini_get</function></member>
|
|
<member><function>ini_get_all</function></member>
|
|
<member><function>ini_restore</function></member>
|
|
<member>
|
|
<link linkend="configuration.changes">Cómo cambiar los ajustes de configuración</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
|
|
-->
|