ReflectionAttribute::newInstance
(PHP 8)
ReflectionAttribute::newInstance — アトリビュートクラスをインスタンス化する
説明
この ReflectionAttribute クラスと引数を表現する、 アトリビュートクラスをインスタンス化します。
パラメータ
この関数にはパラメータはありません。
戻り値
アトリビュートの新しいインスタンスを返します。
+add a note
User Contributed Notes 1 note
baptiste at pillot dot fr ¶
1 year ago
Calling ReflectionAttribute::newInstance() using an attribute name that does not have a corresponding class will result in an error.
Example :
<?php
#[FakeAttribute]
class Test {}
try {
(new ReflectionClass(Test::class))->getAttributes()[0]->newInstance();
}
catch (Error $error) {
echo 'Throwed error ' . get_class($error) . ' with message : ' . $error->getMessage();
}
?>
This will output :
Throwed error Error with message : Attribute class "FakeAttribute" not found
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google