ReflectionParameter::getClass

(PHP 5, PHP 7, PHP 8)

ReflectionParameter::getClass获取参数的 ReflectionClass 对象或为 null

警告

本函数已自 PHP 8.0.0 起被废弃。强烈建议不要依赖本函数。

说明

#[\Deprecated]
public ReflectionParameter::getClass(): ?ReflectionClass

获取参数的 ReflectionClass 对象或为 null

自 PHP 8.0.0 起,弃用此函数且不推荐使用。反而应该使用 ReflectionParameter::getType() 获取参数的 ReflectionType,然后询问该对象以确定参数类型。

警告

本函数还未编写文档,仅有参数列表。

参数

此函数没有参数。

返回值

ReflectionClass 对象,如果没有声明类型或者声明的类型为类或接口则为 null

示例

示例 #1 使用 ReflectionParameter

<?php
function foo(Exception $a) { }

$functionReflection = new ReflectionFunction('foo');
$parameters = $functionReflection->getParameters();
$aParameter = $parameters[0];

echo
$aParameter->getClass()->name;
?>

更新日志

版本 说明
8.0.0 此函数已被弃用。推荐使用 ReflectionParameter::getType() 代替。

参见

添加备注

用户贡献的备注 5 notes

up
12
infernaz at gmail dot com
14 years ago
The method returns ReflectionClass object of parameter type class or NULL if none.<?phpclass A {    function b(B $c, array $d, $e) {    }}class B {}$refl = new ReflectionClass('A');$par = $refl->getMethod('b')->getParameters();var_dump($par[0]->getClass()->getName());  // outputs Bvar_dump($par[1]->getClass());  // note that array type outputs NULLvar_dump($par[2]->getClass());  // outputs NULL?>
up
10
tom at r dot je
13 years ago
ReflectionParameter::getClass() will cause a fatal error (and trigger __autoload) if the class required by the parameter is not defined. Sometimes it's useful to only know the class name without needing the class to be loaded.Here's a simple function that will retrieve only the class name without requiring the class to exist:<?phpfunction getClassName(ReflectionParameter $param) {    preg_match('/\[\s\<\w+?>\s([\w]+)/s', $param->__toString(), $matches);    return isset($matches[1]) ? $matches[1] : null;}?>
up
4
Dylan
4 years ago
For php version >=8ReflectionParamter::getType() is the recommended way to replace the deprecated methods:- getClass()e.g: $name = $param->getType() && !$param->getType()->isBuiltin()        ? new ReflectionClass($param->getType()->getName())       : null;- isArray()e.g: $isArray = $param->getType() && $param->getType()->getName() === 'array';- isCallable()e.g: $isCallable = $param->getType() && $param->getType()->getName() === 'callable';This method is available in PHP 7.0 and later.
up
1
tarik at bitstore dot ru
4 years ago
You may use this one function instead depricated    /**     * Get parameter class     * @param \ReflectionParameter $parameter     * @return \ReflectionClass|null     */    private function getClass(\ReflectionParameter $parameter):?\ReflectionClass    {        $type = $parameter->getType();        if (!$type || $type->isBuiltin())            return NULL;// This line triggers autoloader!        if(!class_exists($type->getName()))            return NULL;               return  new \ReflectionClass($type->getName());    }
up
-4
richard dot t dot rohrig at gmail dot com
5 years ago
Example of how to use getClass() in conjunction with getConstructor() to build the dependencies of a class. private function buildDependencies(ReflectionClass $reflection)    {        $constructor = $reflection->getConstructor();        if (!$constructor) {            return [];        }        $params = $constructor->getParameters();        return array_map(function ($param) {            $className = $param->getClass();            if (!$className) {                throw new Exception();            }            $className = $param->getClass()->getName();            return $this->make($className);        }, $params);    }
To Top