Results of 1 - 10 of about 13 for ReflectionGenerator (0.001 sec.)
- ReflectionGenerator オブジェクトを構築する 10680
- « ReflectionGenerator ReflectionGenerator::getExecutingFile » PHP Manual ReflectionGenerator ReflectionGenerator
... lectionGenerator オブジェクトを構築する ReflectionGenerator::__construct (PHP 7, PHP 8) ReflectionGenerator::_ ... _construct — ReflectionGenerator オブジェクトを構築する 説明 public ReflectionGener ... ator::__construct ( Generator $generator ) ReflectionGenerator オブジェクトを構築します。 パラメータ generator ジ ... ェネレータオブジェクト 例 例1 ReflectionGenerator::__construct() の例 <?php function gen () { yield ...
-
https://man.plustar.jp/php/reflectiongenerator.construct.html
- [similar]
- ReflectionGenerator クラス 10504
- « ReflectionUnionType::getTypes ReflectionGenerator::__construct » PHP Manual リフレクション ReflectionGenerator
... lectionGenerator クラス ReflectionGenerator クラス (PHP 7, PHP 8) はじめに ReflectionGenerator ... タに関する情報を報告します。 クラス概要 final class ReflectionGenerator { /* メソッド */ public __construct ( Generator $g ... nal として定義され、 継承できなくなりました。 目次 ReflectionGenerator::__construct — ReflectionGenerator オブジェクトを構 ... 築する ReflectionGenerator::getExecutingFile — 現在実行中のジェネレータのファ ...
-
https://man.plustar.jp/php/class.reflectiongenerator.html
- [similar]
- 現在実行中のジェネレータの行を取得する 10187
- « ReflectionGenerator::getExecutingGenerator ReflectionGenerator::getFunction » PHP Manual ReflectionGenerator
... onGenerator 現在実行中のジェネレータの行を取得する ReflectionGenerator::getExecutingLine (PHP 7, PHP 8) ReflectionGenerat ... 現在実行中のジェネレータの行を取得する 説明 public ReflectionGenerator::getExecutingLine (): int 現在実行中のジェネレータ ... 実行中のジェネレータの式の行番号を返します。 例 例1 ReflectionGenerator::getExecutingLine() の例 <?php class GenExample { ... = (new GenExample )-> gen (); $reflectionGen = new ReflectionGenerator ( $gen ); echo "Line: { $reflectionGen -> getExecu ...
-
https://man.plustar.jp/php/reflectiongenerator.getexecutingline.html
- [similar]
- 実行中の Generator オブジェクトを取得する 10152
- « ReflectionGenerator::getExecutingFile ReflectionGenerator::getExecutingLine » PHP Manual ReflectionGenerator
... enerator 実行中の Generator オブジェクトを取得する ReflectionGenerator::getExecutingGenerator (PHP 7, PHP 8) ReflectionGe ... 行中の Generator オブジェクトを取得する 説明 public ReflectionGenerator::getExecutingGenerator (): Generator 実行中の Gene ... 在実行中の Generator オブジェクトを返します。 例 例1 ReflectionGenerator::getExecutingGenerator() の例 <?php class GenExamp ... = (new GenExample )-> gen (); $reflectionGen = new ReflectionGenerator ( $gen ); $gen2 = $reflectionGen -> getExecutingGe ...
-
https://man.plustar.jp/php/reflectiongenerator.getexecutinggenerator.html
- [similar]
- ジェネレータの関数名を取得する 10152
- « ReflectionGenerator::getExecutingLine ReflectionGenerator::getThis » PHP Manual ReflectionGenerator
... rator ジェネレータの関数名を取得する ReflectionGenerator::getFunction (PHP 7, PHP 8) ReflectionGenerator::g ... ction — ジェネレータの関数名を取得する 説明 public ReflectionGenerator::getFunction (): ReflectionFunctionAbstract Reflec ... ソッドの場合は ReflectionMethod になります。 例 例1 ReflectionGenerator::getFunction() の例 <?php function gen () { yield ... 1 ; } $gen = gen (); $reflectionGen = new ReflectionGenerator ( $gen ); var_dump ( $reflectionGen -> getFunction ...
-
https://man.plustar.jp/php/reflectiongenerator.getfunction.html
- [similar]
- ジェネレータの $this の値を取得する 10152
- « ReflectionGenerator::getFunction ReflectionGenerator::getTrace » PHP Manual ReflectionGenerator
... r ジェネレータの $this の値を取得する ReflectionGenerator::getThis (PHP 7, PHP 8) ReflectionGenerator::getTh ... — ジェネレータの $this の値を取得する 説明 public ReflectionGenerator::getThis (): ? object ジェネレータがアクセスできる ... の中で作られていない場合は null を返します。 例 例1 ReflectionGenerator::getThis() の例 <?php class GenExample { public fu ... = (new GenExample )-> gen (); $reflectionGen = new ReflectionGenerator ( $gen ); var_dump ( $reflectionGen -> getThis ()) ...
-
https://man.plustar.jp/php/reflectiongenerator.getthis.html
- [similar]
- 現在実行中のジェネレータのファイル名を取得する 10117
- « ReflectionGenerator::__construct ReflectionGenerator::getExecutingGenerator » PHP Manual ReflectionGenerator
... tor 現在実行中のジェネレータのファイル名を取得する ReflectionGenerator::getExecutingFile (PHP 7, PHP 8) ReflectionGenerat ... 行中のジェネレータのファイル名を取得する 説明 public ReflectionGenerator::getExecutingFile (): string 現在実行中のジェネレー ... ェネレータのファイル名をフルパスを返します。 例 例1 ReflectionGenerator::getExecutingFile() の例 <?php class GenExample { ... = (new GenExample )-> gen (); $reflectionGen = new ReflectionGenerator ( $gen ); echo "File: { $reflectionGen -> getExecu ...
-
https://man.plustar.jp/php/reflectiongenerator.getexecutingfile.html
- [similar]
- 実行中のジェネレータのトレースを取得する 9272
- « ReflectionGenerator::getThis ReflectionFiber » PHP Manual ReflectionGenerator 実行中のジェネレ
... ータのトレースを取得する ReflectionGenerator::getTrace (PHP 7, PHP 8) ReflectionGenerator::getT ... 実行中のジェネレータのトレースを取得する 説明 public ReflectionGenerator::getTrace ( int $options = DEBUG_BACKTRACE_PROVIDE ... 在実行中のジェネレータのトレースを返します。 例 例1 ReflectionGenerator::getTrace() の例 <?php function foo () { yield 1 ; ... -> valid (); // ジェネレータを開始 var_dump ((new ReflectionGenerator ( $gen ))-> getTrace ()); 上の例の出力は、 たとえば ...
-
https://man.plustar.jp/php/reflectiongenerator.gettrace.html
- [similar]
- リフレクション 7161
- « unregister_tick_function はじめに » PHP Manual 変数・データ型関連 リフレクション リフレクション
... UnionType::getTypes — union 型に含まれる型を返す。 ReflectionGenerator — ReflectionGenerator クラス ReflectionGenerator:: ... __construct — ReflectionGenerator オブジェクトを構築する ReflectionGenerator::getExe ... e — 現在実行中のジェネレータのファイル名を取得する ReflectionGenerator::getExecutingGenerator — 実行中の Generator オブジ ... ェクトを取得する ReflectionGenerator::getExecutingLine — 現在実行中のジェネレータの行を ...
-
https://man.plustar.jp/php/book.reflection.html
- [similar]
- 変数・データ型関連 6633
- « 変更履歴 配列 » PHP Manual 関数リファレンス 変数・データ型関連 変数・データ型関連 配列 はじめに
... ス ReflectionUnionType — ReflectionUnionType クラス ReflectionGenerator — ReflectionGenerator クラス ReflectionFiber — Ref ...
-
https://man.plustar.jp/php/refs.basic.vartype.html
- [similar]