Php/docs/reflectionproperty.gettype
来自菜鸟教程
ReflectionProperty::getType
(PHP 7 >= 7.4.0)
ReflectionProperty::getType — Gets a property's type
说明
public ReflectionProperty::getType ( ) : ReflectionType|null
Gets the associated type of a property.
参数
此函数没有参数。
范例
Example #1 ReflectionProperty::getType() example
<?phpclass User{ public string $name;}$rp = new ReflectionProperty('User', 'name');echo $rp->getType()->getName();?>
以上例程会输出:
string
参见
- ReflectionProperty::hasType() - Checks if property has a type
- ReflectionProperty::isInitialized() - Checks whether a property is initialized