Files
doc-fr/reference/apache/functions/apache-get-modules.xml
Yannick Torres 5548c2d5b2 * &php; => PHP
* UTF-8 => ISO-8859-15


git-svn-id: https://svn.php.net/repository/phpdoc/fr/trunk@260946 c90b9560-bf6c-de11-be94-00142212c4b1
2008-06-08 19:52:16 +00:00

107 lines
2.3 KiB
XML
Executable File

<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.12 $ -->
<!-- EN-Revision: 1.7 Maintainer: yannick Status: ready -->
<!-- Reviewed: yes -->
<refentry xml:id="function.apache-get-modules" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>apache_get_modules</refname>
<refpurpose>Retourne la liste des modules Apache chargés</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>array</type><methodname>apache_get_modules</methodname>
<void/>
</methodsynopsis>
<para>
Retourne la liste des modules Apache chargés.
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Un tableau contenant les modules Apache chargés.
</para>
</refsect1>
<refsect1 role="changelog">
&reftitle.changelog;
<para>
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>5.0.0</entry>
<entry>
Cette fonction est devenue disponible lors de l'utilisation d'Apache 1
ou de l'API <emphasis>filtre</emphasis> PHP Apache 2. Avant cette
version, elle n'était disponible qu'en utilisant l'API
<emphasis>ressource</emphasis> d'Apache 2.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>Exemple avec <function>apache_get_modules</function></title>
<programlisting role="php">
<![CDATA[
<?php
print_r(apache_get_modules());
?>
]]>
</programlisting>
&example.outputs.similar;
<screen>
<![CDATA[
Array
(
[0] => core
[1] => http_core
[2] => mod_so
[3] => sapi_apache2
[4] => mod_mime
[5] => mod_rewrite
)
]]>
</screen>
</example>
</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:"../../../../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
-->