ReflectionParameter::getDeclaringClass

(PHP 5 >= 5.1.3, PHP 7, PHP 8)

ReflectionParameter::getDeclaringClassGets declaring class

說明

public ReflectionParameter::getDeclaringClass(): ?ReflectionClass

Gets the declaring class.

參數(shù)

此函數(shù)沒有參數(shù)。

返回值

A ReflectionClass object or null if called on function.

范例

示例 #1 Getting the class that declared the method

<?php
class Foo
{
    public function 
bar(\DateTime $datetime)
    {
    }
}

class 
Baz extends Foo
{
}

$param = new \ReflectionParameter(['Baz''bar'], 0); 

var_dump($param->getDeclaringClass());

以上例程會輸出:

object(ReflectionClass)#2 (1) {
  ["name"]=>
  string(3) "Foo"
}

參見