ReflectionFunction クラス
(PHP 5, PHP 7, PHP 8)
はじめに
ReflectionFunction クラスは 関数についての情報を報告します。
クラス概要
/* 定数 */
/* 継承したプロパティ */
/* メソッド */
/* 継承したメソッド */
}定義済み定数
ReflectionFunction の修飾子
ReflectionFunction::IS_DEPRECATED
-
非推奨の関数であることを示します。
変更履歴
バージョン | 説明 |
---|---|
8.0.0 | ReflectionFunction::export() は、削除されました。 |
目次
- ReflectionFunction::__construct — ReflectionFunction オブジェクトを作成する
- ReflectionFunction::export — 関数をエクスポートする
- ReflectionFunction::getClosure — この関数に動的に作成されたクロージャを返す
- ReflectionFunction::invoke — 関数を起動する
- ReflectionFunction::invokeArgs — 引数を指定して関数を起動する
- ReflectionFunction::isAnonymous — 関数が無名関数かどうかを調べる
- ReflectionFunction::isDisabled — 関数が無効になっているかどうかを調べる
- ReflectionFunction::__toString — ReflectionFunction を表現する文字列を返す
+add a note
User Contributed Notes 2 notes
a dot lucassilvadeoliveira at gmail dot com ¶
4 years ago
We can use this functionality to automatically pass arguments to our function based on some data structure.
NOTE: I am using a php 8.0> feature called "Nameds parameter"
<?php
$valuesToProcess = [
'name' => 'Anderson Lucas Silva de Oliveira',
'age' => 21,
'hobbie' => 'Play games'
];
function processUserData($name, $age, $job = "", $hobbie = "")
{
$msg = "Hello $name. You have $age years old";
if (!empty($job)) {
$msg .= ". Your job is $job";
}
if (!empty($hobbie)) {
$msg .= ". Your hobbie is $hobbie";
}
echo $msg . ".";
}
$refFunction = new ReflectionFunction('processUserData');
$parameters = $refFunction->getParameters();
$validParameters = [];
foreach ($parameters as $parameter) {
if (!array_key_exists($parameter->getName(), $valuesToProcess) && !$parameter->isOptional()) {
throw new DomainException('Cannot resolve the parameter' . $parameter->getName());
}
if(!array_key_exists($parameter->getName(), $valuesToProcess)) {
continue;
}
$validParameters[$parameter->getName()] = $valuesToProcess[$parameter->getName()];
}
$refFunction->invoke(...$validParameters);
?>
Results in:
Hello Anderson Lucas Silva de Oliveira. You have 21 years old. Your hobbie is Play games.
Lorenz R.S. ¶
13 years ago
Here is a concise example of ReflectionFunction usage for Parameter Reflection / introspection (e.g. to automatically generate API descriptions)
<?php
$properties = $reflector->getProperties();
$refFunc = new ReflectionFunction('preg_replace');
foreach( $refFunc->getParameters() as $param ){
//invokes ■ReflectionParameter::__toString
print $param;
}
?>
prints:
Parameter #0 [ <required> $regex ]
Parameter #1 [ <required> $replace ]
Parameter #2 [ <required> $subject ]
Parameter #3 [ <optional> $limit ]
Parameter #4 [ <optional> &$count ]
↑ and ↓ to navigate •
Enter to select •