検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 25 for gen (0.002 sec.)
のエイリアス ibase_gen_id 13018
« fbird_free_result fbird_maintain_db » PHP Manual Firebird/InterBase 関数 のエイリアス ibase_gen ... n_id fbird_gen_id (PHP 5, PHP 7 < 7.4.0) fbird_gen_id — のエイリア ... ス ibase_gen_id() 説明 この関数は次の関数のエイリアスです。 iba ... se_gen_id() . 関連キーワード: gen , ibase , fbird , 関数 ...
https://man.plustar.jp/php/function.fbird-gen-id.html - [similar]
指定したノードの子ノードを見付ける 10544
« SimpleXMLElement::attributes SimpleXMLElement::__construct » PHP Manual SimpleXMLElement 指定し ... rson>' ); foreach ( $xml -> children () as $second_gen ) { echo ' The person begot a ' . $second_gen [ 'r ... ole' ]; foreach ( $second_gen -> children () as $third_gen ) { echo ' who begot ... a ' . $third_gen [ 'role' ] . ';' ; foreach ( $third_gen -> childre ... n () as $fourth_gen ) { echo ' and that ' . $third_gen [ 'role' ] . ' ...
https://man.plustar.jp/php/simplexmlelement.children.html - [similar]
yield したキーを取得する 10145
« Generator::getReturn Generator::next » PHP Manual Generator yield したキーを取得する Generator ... ::key (PHP 5 >= 5.5.0, PHP 7, PHP 8) Generator::key — yield したキーを取得する 説明 public ... りません。 戻り値 yield したキーを返します。 例 例1 Generator::key() の例 <?php function Gen () { yield 'k ... ey' => 'value' ; } $gen = Gen (); echo " { $gen -> key ()} => { $gen -> cu ... key => value 関連キーワード: yield , キー , 取得 , Generator , key , パラメータ , getReturn , next , publ ...
https://man.plustar.jp/php/generator.key.html - [similar]
ReflectionGenerator オブジェクトを構築する 9631
« ReflectionGenerator ReflectionGenerator::getExecutingFile » PHP Manual ReflectionGenerator Ref ... lectionGenerator オブジェクトを構築する ReflectionGenerator:: ... __construct (PHP 7, PHP 8) ReflectionGenerator::__construct — ReflectionGenerator オブジェク ... トを構築する 説明 public ReflectionGenerator::__construct ( Generator $generator ) Reflec ... tionGenerator オブジェクトを構築します。 パラメータ genera ...
https://man.plustar.jp/php/reflectiongenerator.construct.html - [similar]
ジェネレータの構文 9564
« ジェネレータとは ジェネレータと Iterator オブジェクトとの比較 » PHP Manual ジェネレータ ジェネ ... : ジェネレータは値を返すことができます。返した値は Generator::getReturn() で取得することが出来ます。 yiel ... します。 例1 値を yield する単純な例 <?php function gen_one_to_three () { for ( $i = 1 ; $i <= 3 ; $i ++) ... の値が維持されることに注目しましょう yield $i ; } } $generator = gen_one_to_three (); foreach ( $generator ... と同じようになります。 警告 $data に代入される値は、 Generator::send() に渡される値、もしくは Generator::ne ...
https://man.plustar.jp/php/language.generators.syntax.html - [similar]
実行中の Generator オブジェクトを取得する 9564
« ReflectionGenerator::getExecutingFile ReflectionGenerator::getExecutingLine » PHP Manual Refle ... ctionGenerator 実行中の Generator オブジェクトを取得する Re ... flectionGenerator::getExecutingGenerator (PHP 7, PHP 8) Reflec ... tionGenerator::getExecutingGenerator — 実行中の Generator ... オブジェクトを取得する 説明 public ReflectionGenerator::getExecutingGenerator (): Generator 実行中の ...
https://man.plustar.jp/php/reflectiongenerator.getexecutinggenerator.html - [similar]
ジェネレータの関数名を取得する 9498
« ReflectionGenerator::getExecutingLine ReflectionGenerator::getThis » PHP Manual ReflectionGene ... rator ジェネレータの関数名を取得する ReflectionGenerator::getFunction (PHP 7, PHP 8) ReflectionGenera ... ジェネレータの関数名を取得する 説明 public ReflectionGenerator::getFunction (): ReflectionFunctionAbstract ... 合は ReflectionMethod になります。 例 例1 ReflectionGenerator::getFunction() の例 <?php function gen () { ... yield 1 ; } $gen = gen (); $reflectionGen = new ReflectionGenerator ...
https://man.plustar.jp/php/reflectiongenerator.getfunction.html - [similar]
例外をジェネレータにスローする 9365
« Generator::send Generator::valid » PHP Manual Generator 例外をジェネレータにスローする Generat ... or::throw (PHP 5 >= 5.5.0, PHP 7, PHP 8) Generator::throw — 例外をジェネレータにスローする 説明 ... public Generator::throw ( Throwable $exception ): mixed 例外を ... 例 例1 ジェネレータへの例外のスロー <?php function gen () { echo "Foo\n" ; try { yield; } catch ( Excepti ... : { $e -> getMessage ()} \n" ; } echo "Bar\n" ; } $gen = gen (); $gen -> rewind (); $gen -> throw (new Ex ...
https://man.plustar.jp/php/generator.throw.html - [similar]
指定した名前のジェネレータをひとつ加算し、その新しい値を返す 8966
« ibase_free_result ibase_maintain_db » PHP Manual Firebird/InterBase 関数 指定した名前のジェネレ ... ータをひとつ加算し、その新しい値を返す ibase_gen_id (PHP 5, PHP 7 < 7.4.0) ibase_gen_id — 指定した名 ... レータをひとつ加算し、その新しい値を返す 説明 ibase_gen_id ( string $generator , int $increment = 1 , reso ... 関連キーワード: 名前 , 加算 , 指定 , 値 , ibase , gen , 関数 , identifier , 記述 , リスト ...
https://man.plustar.jp/php/function.ibase-gen-id.html - [similar]
現在実行中のジェネレータの行を取得する 8850
« ReflectionGenerator::getExecutingGenerator ReflectionGenerator::getFunction » PHP Manual Refle ... ctionGenerator 現在実行中のジェネレータの行を取得する Refle ... ctionGenerator::getExecutingLine (PHP 7, PHP 8) ReflectionG ... 中のジェネレータの行を取得する 説明 public ReflectionGenerator::getExecutingLine (): int 現在実行中のジェネ ... ェネレータの式の行番号を返します。 例 例1 ReflectionGenerator::getExecutingLine() の例 <?php class GenExam ...
https://man.plustar.jp/php/reflectiongenerator.getexecutingline.html - [similar]
PREV 1 2 3 NEXT