mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-26 05:48:57 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@297028 c90b9560-bf6c-de11-be94-00142212c4b1
110 lines
2.4 KiB
XML
110 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.ob-list-handlers">
|
|
<refnamediv>
|
|
<refname>ob_list_handlers</refname>
|
|
<refpurpose>List all output handlers in use</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>array</type><methodname>ob_list_handlers</methodname>
|
|
<void/>
|
|
</methodsynopsis>
|
|
<para>
|
|
Lists all output handlers in use.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
This will return an array with the output handlers in use (if any). If
|
|
<link linkend="ini.output-buffering">output_buffering</link> is enabled or
|
|
an anonymous function was used with <function>ob_start</function>,
|
|
<function>ob_list_handlers</function> will return "default output
|
|
handler".
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title><function>ob_list_handlers</function> example</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
//using output_buffering=On
|
|
print_r(ob_list_handlers());
|
|
ob_end_flush();
|
|
|
|
ob_start("ob_gzhandler");
|
|
print_r(ob_list_handlers());
|
|
ob_end_flush();
|
|
|
|
// anonymous functions
|
|
ob_start(create_function('$string', 'return $string;'));
|
|
print_r(ob_list_handlers());
|
|
ob_end_flush();
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen>
|
|
<![CDATA[
|
|
Array
|
|
(
|
|
[0] => default output handler
|
|
)
|
|
|
|
Array
|
|
(
|
|
[0] => ob_gzhandler
|
|
)
|
|
|
|
Array
|
|
(
|
|
[0] => default output handler
|
|
)
|
|
]]>
|
|
</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_get_flush</function></member>
|
|
<member><function>ob_start</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
|
|
-->
|