php:使用反射获取变量类型提示

2022-08-31 00:41:13
class Expense {

    /**
     * @var int
     */
    private $id;
}

我想使用反射获取类中变量的类型提示,因为默认值为 null。


答案 1

尝试:

<?php
class Expense {

    /**
     * @var int
     */
    private $id;
}

$refClass = new ReflectionClass('Expense');
foreach ($refClass->getProperties() as $refProperty) {
    if (preg_match('/@var\s+([^\s]+)/', $refProperty->getDocComment(), $matches)) {
        list(, $type) = $matches;
        var_dump($type);
    }
}

输出

string(3) "int"

答案 2

对于 PHP 7.4

$reflection = new \ReflectionProperty('className', 'propertyName');
echo $reflection->getType()->getName();

推荐