CakeFest 2024: The Official CakePHP Conference

ReflectionParameter::getDeclaringClass

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

ReflectionParameter::getDeclaringClassGets declaring class

Descrizione

public ReflectionParameter::getDeclaringClass(): ?ReflectionClass

Gets the declaring class.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

A ReflectionClass object or null if called on function.

Esempi

Example #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());

Il precedente esempio visualizzerà:

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

Vedere anche:

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top