array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), 'this' => array ( 0 => 'reflectionfunctionabstract.getreturntype.php', 1 => 'ReflectionFunctionAbstract::getReturnType', 2 => 'Gets the specified return type of a function', ), 'up' => array ( 0 => 'class.reflectionfunctionabstract.php', 1 => 'ReflectionFunctionAbstract', ), 'prev' => array ( 0 => 'reflectionfunctionabstract.getparameters.php', 1 => 'ReflectionFunctionAbstract::getParameters', ), 'next' => array ( 0 => 'reflectionfunctionabstract.getshortname.php', 1 => 'ReflectionFunctionAbstract::getShortName', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/reflection/reflectionfunctionabstract/getreturntype.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

ReflectionFunctionAbstract::getReturnType

(PHP 7, PHP 8)

ReflectionFunctionAbstract::getReturnTypeGets the specified return type of a function

Descrizione

public ReflectionFunctionAbstract::getReturnType(): ?ReflectionType

Gets the specified return type of a reflected function.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns a ReflectionType object if a return type is specified, null otherwise.

Esempi

Example #1 ReflectionFunctionAbstract::getReturnType() example

<?php

function to_int($param) : int {
return (int)
$param;
}

$reflection1 = new ReflectionFunction('to_int');
echo
$reflection1->getReturnType();

Il precedente esempio visualizzerĂ :

int

Example #2 Usage on built-in functions

<?php

$reflection2
= new ReflectionFunction('array_merge');

var_dump($reflection2->getReturnType());

Il precedente esempio visualizzerĂ :

null

This is because many internal functions do not have types specified for their parameters or return values. It is therefore best to avoid using this method on built-in functions.

Vedere anche: