mirror of
https://github.com/macintoshplus/doc-fr.git
synced 2026-03-25 17:32:07 +01:00
173 lines
4.7 KiB
XML
173 lines
4.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: a0ae28d3bc85f927c22649ebd9a590b921534b7d Maintainer: yannick Status: ready -->
|
|
<!-- Reviewed: no -->
|
|
|
|
<appendix xml:id="outcontrol.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
&reftitle.constants;
|
|
&extension.constants.core;
|
|
<variablelist>
|
|
<varlistentry xml:id="constant.php-output-handler-start">
|
|
<term>
|
|
<constant>PHP_OUTPUT_HANDLER_START</constant>
|
|
(<type>int</type>)
|
|
</term>
|
|
<listitem>
|
|
<para>
|
|
Indique que l'affichage de la mémoire tampon a commencé.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry xml:id="constant.php-output-handler-write">
|
|
<term>
|
|
<constant>PHP_OUTPUT_HANDLER_WRITE</constant>
|
|
(<type>int</type>)
|
|
</term>
|
|
<listitem>
|
|
<para>
|
|
Indique que la mémoire tampon de sortie a commencé à
|
|
être affichée, et qu'elle contient des données.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry xml:id="constant.php-output-handler-flush">
|
|
<term>
|
|
<constant>PHP_OUTPUT_HANDLER_FLUSH</constant>
|
|
(<type>int</type>)
|
|
</term>
|
|
<listitem>
|
|
<para>
|
|
Indique que la mémoire tampon a été affichée.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry xml:id="constant.php-output-handler-clean">
|
|
<term>
|
|
<constant>PHP_OUTPUT_HANDLER_CLEAN</constant>
|
|
(<type>int</type>)
|
|
</term>
|
|
<listitem>
|
|
<para>
|
|
Indique que la mémoire tampon de sortie a été nettoyée.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry xml:id="constant.php-output-handler-final">
|
|
<term>
|
|
<constant>PHP_OUTPUT_HANDLER_FINAL</constant>
|
|
(<type>int</type>)
|
|
</term>
|
|
<listitem>
|
|
<para>
|
|
Indique que c'est l'opération finale d'affichage de la mémoire tampon.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry xml:id="constant.php-output-handler-cont">
|
|
<term>
|
|
<constant>PHP_OUTPUT_HANDLER_CONT</constant>
|
|
(<type>int</type>)
|
|
</term>
|
|
<listitem>
|
|
<para>
|
|
Indique que la mémoire tampon a été affichée, mais que la mise
|
|
en mémoire tampon de la sortie continue.
|
|
</para>
|
|
<para>
|
|
C'est un alias de la constante
|
|
<constant>PHP_OUTPUT_HANDLER_WRITE</constant>.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry xml:id="constant.php-output-handler-end">
|
|
<term>
|
|
<constant>PHP_OUTPUT_HANDLER_END</constant>
|
|
(<type>int</type>)
|
|
</term>
|
|
<listitem>
|
|
<para>
|
|
Indique que la mise en mémoire tampon de la sortie est terminée.
|
|
</para>
|
|
<para>
|
|
C'est un alias de la constante
|
|
<constant>PHP_OUTPUT_HANDLER_FINAL</constant>.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry xml:id="constant.php-output-handler-cleanable">
|
|
<term>
|
|
<constant>PHP_OUTPUT_HANDLER_CLEANABLE</constant>
|
|
(<type>int</type>)
|
|
</term>
|
|
<listitem>
|
|
<para>
|
|
Contrôle si un tampon de sortie créé par la fonction
|
|
<function>ob_start</function> peut être supprimée.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry xml:id="constant.php-output-handler-flushable">
|
|
<term>
|
|
<constant>PHP_OUTPUT_HANDLER_FLUSHABLE</constant>
|
|
(<type>int</type>)
|
|
</term>
|
|
<listitem>
|
|
<para>
|
|
Contrôle si un tampon de sortie créé par la fonction
|
|
<function>ob_start</function> peut être envoyée à la sortie standard.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry xml:id="constant.php-output-handler-removable">
|
|
<term>
|
|
<constant>PHP_OUTPUT_HANDLER_REMOVABLE</constant>
|
|
(<type>int</type>)
|
|
</term>
|
|
<listitem>
|
|
<para>
|
|
Contrôle si un tampon de sortie créé par la fonction
|
|
<function>ob_start</function> peut être supprimée avant la fin
|
|
du script.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry xml:id="constant.php-output-handler-stdflags">
|
|
<term>
|
|
<constant>PHP_OUTPUT_HANDLER_STDFLAGS</constant>
|
|
(<type>int</type>)
|
|
</term>
|
|
<listitem>
|
|
<para>
|
|
Le jeu par défaut des drapeaux pour le tampon de sortie ;
|
|
actuellement, équivalent à
|
|
<constant>PHP_OUTPUT_HANDLER_CLEANABLE</constant> |
|
|
<constant>PHP_OUTPUT_HANDLER_FLUSHABLE</constant> |
|
|
<constant>PHP_OUTPUT_HANDLER_REMOVABLE</constant>.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</appendix>
|
|
|
|
<!-- 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
|
|
-->
|
|
|