mirror of
https://github.com/php/doc-ja.git
synced 2026-03-24 15:12:22 +01:00
125 lines
3.1 KiB
XML
125 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 812143d1de2e2c822f815090a40b395b512db751 Maintainer: mumumu Status: ready -->
|
|
|
|
<refentry xml:id="reflectiongenerator.getfunction" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<refnamediv>
|
|
<refname>ReflectionGenerator::getFunction</refname>
|
|
<refpurpose>ジェネレータの関数名を取得する</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis role="ReflectionGenerator">
|
|
<modifier>public</modifier> <type>ReflectionFunctionAbstract</type><methodname>ReflectionGenerator::getFunction</methodname>
|
|
<void/>
|
|
</methodsynopsis>
|
|
<para>
|
|
<classname>ReflectionFunctionAbstract</classname> から派生したクラスを返すことによって、
|
|
取得したジェネレータの関数名を取得します。
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
&no.function.parameters;
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
<classname>ReflectionFunctionAbstract</classname> クラスを返します。
|
|
これは 関数の場合は <classname>ReflectionFunction</classname> ですし、
|
|
メソッドの場合は <classname>ReflectionMethod</classname> になります。
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="changelog">
|
|
&reftitle.changelog;
|
|
<informaltable>
|
|
<tgroup cols="2">
|
|
<thead>
|
|
<row>
|
|
<entry>&Version;</entry>
|
|
<entry>&Description;</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody>
|
|
<row>
|
|
<entry>8.4.0</entry>
|
|
<entry>
|
|
<methodname>ReflectionGenerator::getFunction</methodname> は、
|
|
ジェネレータの実行が終了した後に呼び出すことができるようになりました。
|
|
</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</informaltable>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title><methodname>ReflectionGenerator::getFunction</methodname> の例</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
|
|
function gen()
|
|
{
|
|
yield 1;
|
|
}
|
|
|
|
$gen = gen();
|
|
|
|
$reflectionGen = new ReflectionGenerator($gen);
|
|
|
|
var_dump($reflectionGen->getFunction());
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs.similar;
|
|
<screen>
|
|
<![CDATA[
|
|
object(ReflectionFunction)#3 (1) {
|
|
["name"]=>
|
|
string(3) "gen"
|
|
}
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><methodname>ReflectionGenerator::getThis</methodname></member>
|
|
<member><methodname>ReflectionGenerator::getTrace</methodname></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
|
|
-->
|