mirror of
https://github.com/php/doc-pt_br.git
synced 2026-03-24 15:12:23 +01:00
* Remoção massificada de espaços finais * sync ws * sync ws * sync ws * sync ws * sync ws * sync ws * sync ws * sync ws * sync ws * sync ws * sync ws * sync ws * sync ws * sync ws * sync ws --------- Co-authored-by: André L F S Bacci <ae@php.net> Co-authored-by: Leonardo Lara Rodrigues <leonardo.lara.rodrigues@gmail.com>
83 lines
1.8 KiB
XML
Executable File
83 lines
1.8 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- EN-Revision: f3b9d85f71934d6814a493fabb367e10731e0394 Maintainer: ae Status: ready --><!-- CREDITS: narigone,fabioluciano,ae -->
|
|
<refentry xml:id="function.apache-get-modules" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>apache_get_modules</refname>
|
|
<refpurpose>Retorna uma lista de módulos carregados do Apache</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>array</type><methodname>apache_get_modules</methodname>
|
|
<void/>
|
|
</methodsynopsis>
|
|
<para>
|
|
Retorna uma lista de módulos carregados do Apache.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
&no.function.parameters;
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Um <type>array</type> de módulos carregados do Apache.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Exemplo da função <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:"~/.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
|
|
-->
|