(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)