mirror of
https://github.com/php/doc-ja.git
synced 2026-03-24 07:02:08 +01:00
207 lines
5.5 KiB
XML
207 lines
5.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 14767af0f05dffa6fdb9b49e1a1f4e9ca7022a60 Maintainer: takagi Status: ready -->
|
|
<reference xml:id="class.splfixedarray" role="class" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
|
|
<title>SplFixedArray クラス</title>
|
|
<titleabbrev>SplFixedArray</titleabbrev>
|
|
|
|
<partintro>
|
|
|
|
<!-- {{{ splfixedarray intro -->
|
|
<section xml:id="splfixedarray.intro">
|
|
&reftitle.intro;
|
|
<para>
|
|
SplFixedArray クラスは配列の主要な機能を提供します。
|
|
SplFixedArray と通常の PHP の配列との主な違いは、
|
|
SplFixedArray は手動でリサイズしなければならないことと、
|
|
整数値で指定した範囲内の添字しか使用できないところです。
|
|
これにより、標準の <type>array</type> よりメモリ消費が少なくて済みます。
|
|
</para>
|
|
</section>
|
|
<!-- }}} -->
|
|
|
|
<section xml:id="splfixedarray.synopsis">
|
|
&reftitle.classsynopsis;
|
|
|
|
<!-- {{{ Synopsis -->
|
|
<classsynopsis class="class">
|
|
<ooclass>
|
|
<classname>SplFixedArray</classname>
|
|
</ooclass>
|
|
|
|
<oointerface>
|
|
<modifier>implements</modifier>
|
|
<interfacename>IteratorAggregate</interfacename>
|
|
</oointerface>
|
|
|
|
<oointerface>
|
|
<interfacename>ArrayAccess</interfacename>
|
|
</oointerface>
|
|
|
|
<oointerface>
|
|
<interfacename>Countable</interfacename>
|
|
</oointerface>
|
|
|
|
<oointerface>
|
|
<interfacename>JsonSerializable</interfacename>
|
|
</oointerface>
|
|
|
|
<classsynopsisinfo role="comment">&Methods;</classsynopsisinfo>
|
|
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.splfixedarray')/db:refentry/db:refsect1[@role='description']/descendant::db:constructorsynopsis[@role='SplFixedArray'])">
|
|
<xi:fallback/>
|
|
</xi:include>
|
|
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.splfixedarray')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[@role='SplFixedArray'])">
|
|
<xi:fallback/>
|
|
</xi:include>
|
|
</classsynopsis>
|
|
|
|
</section>
|
|
|
|
<section role="changelog">
|
|
&reftitle.changelog;
|
|
<informaltable>
|
|
<tgroup cols="2">
|
|
<thead>
|
|
<row>
|
|
<entry>&Version;</entry>
|
|
<entry>&Description;</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody>
|
|
<row>
|
|
<entry>8.2.0</entry>
|
|
<entry>
|
|
マジックメソッド
|
|
<methodname>SplFixedArray::__serialize</methodname> と
|
|
<methodname>SplFixedArray::__unserialize</methodname>
|
|
が、<classname>SplFixedArray</classname> に追加されました。
|
|
</entry>
|
|
</row>
|
|
<row>
|
|
<entry>8.1.0</entry>
|
|
<entry>
|
|
<classname>SplFixedArray</classname> は、
|
|
<interfacename>JsonSerializable</interfacename>
|
|
を実装するようになりました。
|
|
</entry>
|
|
</row>
|
|
<row>
|
|
<entry>8.0.0</entry>
|
|
<entry>
|
|
<classname>SplFixedArray</classname> は、
|
|
<interfacename>IteratorAggregate</interfacename>
|
|
を実装するようになりました。
|
|
これより前のバージョンでは、
|
|
<interfacename>Iterator</interfacename> を実装していました。
|
|
</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</informaltable>
|
|
</section>
|
|
|
|
<!-- {{{ splfixedarray examples -->
|
|
<section xml:id="splfixedarray.examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title><classname>SplFixedArray</classname> の使用例</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
// 固定長の配列を初期化します
|
|
$array = new SplFixedArray(5);
|
|
|
|
$array[1] = 2;
|
|
$array[4] = "foo";
|
|
|
|
var_dump($array[0]); // NULL
|
|
var_dump($array[1]); // int(2)
|
|
|
|
var_dump($array["4"]); // string(3) "foo"
|
|
|
|
// 配列のサイズを 10 に拡大します
|
|
$array->setSize(10);
|
|
|
|
$array[9] = "asdf";
|
|
|
|
// 配列のサイズを 2 に縮めます
|
|
$array->setSize(2);
|
|
|
|
// 以下は RuntimeException: Index invalid or out of range となります
|
|
try {
|
|
var_dump($array["non-numeric"]);
|
|
} catch(RuntimeException $re) {
|
|
echo "RuntimeException: ".$re->getMessage()."\n";
|
|
}
|
|
|
|
try {
|
|
var_dump($array[-1]);
|
|
} catch(RuntimeException $re) {
|
|
echo "RuntimeException: ".$re->getMessage()."\n";
|
|
}
|
|
|
|
try {
|
|
var_dump($array[5]);
|
|
} catch(RuntimeException $re) {
|
|
echo "RuntimeException: ".$re->getMessage()."\n";
|
|
}
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen>
|
|
<![CDATA[
|
|
NULL
|
|
int(2)
|
|
string(3) "foo"
|
|
RuntimeException: Index invalid or out of range
|
|
RuntimeException: Index invalid or out of range
|
|
RuntimeException: Index invalid or out of range
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</para>
|
|
</section>
|
|
<!-- }}} -->
|
|
|
|
<!-- {{{ splfixedarray properties
|
|
<section xml:id="splfixedarray.props">
|
|
&reftitle.properties;
|
|
<variablelist>
|
|
<varlistentry xml:id="splfixedarray.props.name">
|
|
<term><varname>name</varname></term>
|
|
<listitem>
|
|
<para>Prop description</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</section>
|
|
}}} -->
|
|
|
|
</partintro>
|
|
|
|
&reference.spl.entities.splfixedarray;
|
|
|
|
</reference>
|
|
<!-- 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
|
|
-->
|