mirror of
https://github.com/php/doc-pt_br.git
synced 2026-03-24 07:02:09 +01:00
* inclusão de arquivos originais * tradução de arquivos em arrayobject * Update count.xml * Update serialize.xml * Update setflags.xml * Update unserialize.xml * Update construct.xml
103 lines
2.7 KiB
XML
103 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- EN-Revision: d51166ca16fda8e766849505b84f9306ef443f71 Maintainer: fernandowobeto Status: ready --><!-- CREDITS: fernandowobeto -->
|
|
<refentry xml:id="arrayobject.getiteratorclass" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>ArrayObject::getIteratorClass</refname>
|
|
<refpurpose>Obtém o nome da classe do iterador para o ArrayObject</refpurpose>
|
|
</refnamediv>
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis role="ArrayObject">
|
|
<modifier>public</modifier> <type>string</type><methodname>ArrayObject::getIteratorClass</methodname>
|
|
<void/>
|
|
</methodsynopsis>
|
|
<para>
|
|
Obtém o nome da classe do iterador de array que é usado por
|
|
<link linkend="arrayobject.getiterator">ArrayObject::getIterator()</link>.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
&no.function.parameters;
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Retorna o nome da classe do iterador que é usado para iterar sobre este objeto.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Exemplo de <function>ArrayObject::getIteratorClass</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
// ArrayIterator Personalizado (herda de ArrayIterator)
|
|
class MyArrayIterator extends ArrayIterator {
|
|
// implementação personalizada
|
|
}
|
|
|
|
// Array de frutas disponíveis
|
|
$fruits = array("lemons" => 1, "oranges" => 4, "bananas" => 5, "apples" => 10);
|
|
|
|
$fruitsArrayObject = new ArrayObject($fruits);
|
|
|
|
// Obtém o nome da classe atual
|
|
$className = $fruitsArrayObject->getIteratorClass();
|
|
var_dump($className);
|
|
|
|
// Define novo nome de classe
|
|
$fruitsArrayObject->setIteratorClass('MyArrayIterator');
|
|
|
|
// Obtém o novo nome de classe do iterador
|
|
$className = $fruitsArrayObject->getIteratorClass();
|
|
var_dump($className);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen>
|
|
<![CDATA[
|
|
string(13) "ArrayIterator"
|
|
string(15) "MyArrayIterator"
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member>O método <link linkend="arrayobject.setiteratorclass">ArrayObject::setIteratorClass</link></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
|
|
-->
|