mirror of
https://github.com/php/doc-ja.git
synced 2026-04-25 08:58:19 +02:00
102 lines
2.4 KiB
XML
102 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 60809ebcf7d0c261b2f00e093e4fab70326ffc7b Maintainer: takagi Status: ready -->
|
|
<refentry xml:id="countable.count" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<refnamediv>
|
|
<refname>Countable::count</refname>
|
|
<refpurpose>オブジェクトの要素数を数える</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<modifier>public</modifier> <type>int</type><methodname>Countable::count</methodname>
|
|
<void/>
|
|
</methodsynopsis>
|
|
<para>
|
|
このメソッドは、<classname>Countable</classname> を実装したオブジェクトで
|
|
<function>count</function> 関数を使用した際に実行されます。
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
&no.function.parameters;
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
要素数を <type>int</type> 型で返します。
|
|
</para>
|
|
<note>
|
|
<para>
|
|
戻り値は <type>int</type> 型にキャストされます。
|
|
</para>
|
|
</note>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title><function>Countable::count</function> の例</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
class myCounter implements Countable {
|
|
private $count = 0;
|
|
public function count() {
|
|
return ++$this->count;
|
|
}
|
|
}
|
|
|
|
$counter = new myCounter;
|
|
|
|
for($i=0; $i<10; ++$i) {
|
|
echo "I have been count()ed " . count($counter) . " times\n";
|
|
}
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs.similar;
|
|
<screen>
|
|
<![CDATA[
|
|
I have been count()ed 1 times
|
|
I have been count()ed 2 times
|
|
I have been count()ed 3 times
|
|
I have been count()ed 4 times
|
|
I have been count()ed 5 times
|
|
I have been count()ed 6 times
|
|
I have been count()ed 7 times
|
|
I have been count()ed 8 times
|
|
I have been count()ed 9 times
|
|
I have been count()ed 10 times
|
|
]]>
|
|
</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
|
|
-->
|