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
90 lines
2.2 KiB
XML
90 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- EN-Revision: d51166ca16fda8e766849505b84f9306ef443f71 Maintainer: fernandowobeto Status: ready --><!-- CREDITS: fernandowobeto -->
|
|
<refentry xml:id="arrayobject.count" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>ArrayObject::count</refname>
|
|
<refpurpose>Obtém o número de propriedades públicas no ArrayObject</refpurpose>
|
|
</refnamediv>
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis role="ArrayObject">
|
|
<modifier>public</modifier> <type>int</type><methodname>ArrayObject::count</methodname>
|
|
<void/>
|
|
</methodsynopsis>
|
|
<para>
|
|
Obtém o número de propriedades públicas no <classname>ArrayObject</classname>.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
&no.function.parameters;
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
O número de propriedades públicas no <classname>ArrayObject</classname>.
|
|
</para>
|
|
<note>
|
|
<para>
|
|
Quando o <classname>ArrayObject</classname> é construído a partir de um array, todas as propriedades são públicas.
|
|
</para>
|
|
</note>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Exemplo de <methodname>ArrayObject::count</methodname></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
class Example {
|
|
public $public = 'prop:public';
|
|
private $prv = 'prop:private';
|
|
protected $prt = 'prop:protected';
|
|
}
|
|
|
|
$arrayobj = new ArrayObject(new Example());
|
|
var_dump($arrayobj->count());
|
|
|
|
$arrayobj = new ArrayObject(array('first','second','third'));
|
|
var_dump($arrayobj->count());
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen>
|
|
<![CDATA[
|
|
int(1)
|
|
int(3)
|
|
]]>
|
|
</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
|
|
-->
|