mirror of
https://github.com/macintoshplus/doc-fr.git
synced 2026-03-25 17:32:07 +01:00
115 lines
2.8 KiB
XML
Executable File
115 lines
2.8 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 6ab6ea465889620fc2a8cdaf7b008cbaed83c523 Maintainer: yannick Status: ready -->
|
|
<!-- Reviewed: yes -->
|
|
<refentry xml:id="function.ob-get-flush" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>ob_get_flush</refname>
|
|
<refpurpose>Vide le tampon, le retourne en tant que chaîne et stoppe la temporisation</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type class="union"><type>string</type><type>false</type></type><methodname>ob_get_flush</methodname>
|
|
<void/>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>ob_get_flush</function> vide le tampon, le retourne en tant
|
|
que chaîne et stoppe la temporisation.
|
|
</para>
|
|
<para>
|
|
Le tampon de sortie doit avoir été démarré avec la fonction
|
|
<function>ob_start</function> et le drapeau <link
|
|
linkend="constant.php-output-handler-flushable">PHP_OUTPUT_HANDLER_FLUSHABLE</link>.
|
|
Sinon, la fonction <function>ob_get_flush</function> ne fonctionnera pas.
|
|
</para>
|
|
<note>
|
|
<simpara>
|
|
Cette fonction est similaire à <function>ob_end_flush</function>, sauf que
|
|
cette fonction retourne également le tampon sous forme de chaîne.
|
|
</simpara>
|
|
</note>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
&no.function.parameters;
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Retourne le tampon de sortie ou &false; s'il n'y en a aucun
|
|
d'actif.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Exemple avec <function>ob_get_flush</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
//Utilisation de output_buffering=On
|
|
print_r(ob_list_handlers());
|
|
|
|
//Saugarde du tampon dans un fichier
|
|
$buffer = ob_get_flush();
|
|
file_put_contents('buffer.txt', $buffer);
|
|
|
|
print_r(ob_list_handlers());
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen>
|
|
<![CDATA[
|
|
Array
|
|
(
|
|
[0] => default output handler
|
|
)
|
|
Array
|
|
(
|
|
)
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>ob_end_clean</function></member>
|
|
<member><function>ob_end_flush</function></member>
|
|
<member><function>ob_list_handlers</function></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
|
|
-->
|