svn: /phpdoc/pt_BR/trunk/reference/reflection/ reflectionextension/info.xml
[email protected] (André Luis Ferreira da Silva Bacci)
| Newsgroups | php.doc.pt-br |
|---|---|
| Message-ID | <[email protected]> |
ae Mon, 14 Oct 2019 21:28:02 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=348157
Log:
Translations by @vanildosouto - https://github.com/phpdocbrbridge/traducao/pull/93
Changed paths:
A phpdoc/pt_BR/trunk/reference/reflection/reflectionextension/
A phpdoc/pt_BR/trunk/reference/reflection/reflectionextension/info.xml
Added: phpdoc/pt_BR/trunk/reference/reflection/reflectionextension/info.xml
===================================================================
--- phpdoc/pt_BR/trunk/reference/reflection/reflectionextension/info.xml (rev 0)
+++ phpdoc/pt_BR/trunk/reference/reflection/reflectionextension/info.xml 2019-10-14 21:28:02 UTC (rev 348157)
@@ -0,0 +1,115 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- EN-Revision: 315808 Maintainer: none Status: revision --><!-- CREDITS: github:vanildosouto -->
+
+<refentry xml:id="reflectionextension.info" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <refnamediv>
+ <refname>ReflectionExtension::info</refname>
+ <refpurpose>Imprime informações da extensão</refpurpose>
+ </refnamediv>
+
+ <refsect1 role="description">
+ &reftitle.description;
+ <methodsynopsis>
+ <modifier>public</modifier> <type>void</type><methodname>ReflectionExtension::info</methodname>
+ <void />
+ </methodsynopsis>
+ <para>
+ Imprime a saída do trecho "<function>phpinfo</function>"
+ de uma dada extensão.
+ </para>
+ </refsect1>
+
+ <refsect1 role="parameters">
+ &reftitle.parameters;
+ &no.function.parameters;
+ </refsect1>
+
+ <refsect1 role="returnvalues">
+ &reftitle.returnvalues;
+ <para>
+ Informação sobre a extensão.
+ </para>
+ </refsect1>
+
+ <refsect1 role="examples">
+ &reftitle.examples;
+ <para>
+ <example>
+ <title><methodname>ReflectionExtension::info</methodname> exemplo</title>
+ <programlisting role="php">
+<![CDATA[
+<?php
+$ext = new ReflectionExtension('mysqli');
+$ext->info();
+?>
+]]>
+ </programlisting>
+ &example.outputs.similar;
+ <screen>
+<![CDATA[
+mysqli
+
+MysqlI Support => enabled
+Client API library version => mysqlnd 5.0.5-dev - 081106 - $Revision: 315808 $
+Active Persistent Links => 0
+Inactive Persistent Links => 0
+Active Links => 0
+Persistent cache => enabled
+put_hits => 0
+put_misses => 0
+get_hits => 0
+get_misses => 0
+size => 2000
+free_items => 2000
+references => 2
+
+Directive => Local Value => Master Value
+mysqli.max_links => Unlimited => Unlimited
+mysqli.max_persistent => Unlimited => Unlimited
+mysqli.allow_persistent => On => On
+mysqli.default_host => no value => no value
+mysqli.default_user => no value => no value
+mysqli.default_pw => no value => no value
+mysqli.default_port => 3306 => 3306
+mysqli.default_socket => no value => no value
+mysqli.reconnect => Off => Off
+mysqli.allow_local_infile => On => On
+mysqli.cache_size => 2000 => 2000
+]]>
+ </screen>
+ </example>
+ </para>
+ </refsect1>
+
+ <refsect1 role="seealso">
+ &reftitle.seealso;
+ <para>
+ <simplelist>
+ <member><methodname>ReflectionExtension::getName</methodname></member>
+ <member><function>phpinfo</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
+-->