ReflectionProperty::hasType
(PHP 7 >= 7.4.0, PHP 8)
ReflectionProperty::hasType — プロパティが型を持つかをチェックする
パラメータ
この関数にはパラメータはありません。
例
例1 ReflectionProperty::hasType() の例
<?php
class User
{
public string $name;
}
$rp = new ReflectionProperty('User', 'name');
var_dump($rp->hasType());
?>
上の例の出力は以下となります。
bool(true)
参考
- ReflectionProperty::getType() - プロパティの型を取得する
- ReflectionProperty::isInitialized() - プロパティが初期化されているかをチェックする
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google