mirror of
https://github.com/php/doc-fr.git
synced 2026-03-24 07:02:06 +01:00
110 lines
2.7 KiB
XML
110 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- EN-Revision: 3a826d03cc95763602cc1e04021c8d6aad4d7fed Maintainer: Fan2Shrek Status: ready -->
|
|
<!-- Reviewed: yes -->
|
|
<section xmlns="http://docbook.org/ns/docbook" xml:id="runkit7.configuration">
|
|
&reftitle.runtime;
|
|
&extension.runtime;
|
|
<para>
|
|
<table>
|
|
<title>Options de configuration de Runkit</title>
|
|
<tgroup cols="4">
|
|
<thead>
|
|
<row>
|
|
<entry>&Name;</entry>
|
|
<entry>&Default;</entry>
|
|
<entry>&Changeable;</entry>
|
|
<entry>&Changelog;</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody xml:id="runkit7.configuration.list">
|
|
<row>
|
|
<entry><link linkend="ini.runkit7.superglobal">runkit.superglobal</link></entry>
|
|
<entry>""</entry>
|
|
<entry><constant>INI_PERDIR</constant></entry>
|
|
<entry/>
|
|
</row>
|
|
<row>
|
|
<entry><link linkend="ini.runkit7.internal-override">runkit.internal_override</link></entry>
|
|
<entry>"0"</entry>
|
|
<entry><constant>INI_SYSTEM</constant></entry>
|
|
<entry/>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</table>
|
|
&ini.php.constants;
|
|
</para>
|
|
|
|
&ini.descriptions.title;
|
|
|
|
<variablelist>
|
|
<varlistentry xml:id="ini.runkit7.superglobal">
|
|
<term>
|
|
<parameter>runkit.superglobal</parameter>
|
|
<type>string</type>
|
|
</term>
|
|
<listitem>
|
|
<simpara>
|
|
Une liste séparée par des virgules de noms de variables à traiter comme des superglobales.
|
|
Cette valeur doit être définie dans le fichier php.ini du système, mais peut fonctionner
|
|
dans des contextes de configuration perdir en fonction du SAPI.
|
|
</simpara>
|
|
<example>
|
|
<title>Superglobales personnalisées avec runkit.superglobal=_FOO,_BAR dans php.ini</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
function show_values() {
|
|
echo "Foo is $_FOO\n";
|
|
echo "Bar is $_BAR\n";
|
|
echo "Baz is $_BAZ\n";
|
|
}
|
|
|
|
$_FOO = 'foo';
|
|
$_BAR = 'bar';
|
|
$_BAZ = 'baz';
|
|
|
|
/* Affiche foo et bar, mais pas baz */
|
|
show_values();
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry xml:id="ini.runkit7.internal-override">
|
|
<term>
|
|
<parameter>runkit.internal_override</parameter>
|
|
<type>bool</type>
|
|
</term>
|
|
<listitem>
|
|
<simpara>
|
|
Active la possibilité de modifier/renommer/supprimer des fonctions internes.
|
|
</simpara>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
</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
|
|
-->
|