ReflectionParameter::__toString

(PHP 5, PHP 7, PHP 8)

ReflectionParameter::__toStringTo string

Descrizione

public ReflectionParameter::__toString(): string

Get a human-readable description of the parameter.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

The string.

Esempi

Example #1 ReflectionParameter::__toString() example

<?php
echo new ReflectionParameter('substr', 0);
?>

Il precedente esempio visualizzerĂ  qualcosa simile a:

Parameter #0 [ <required> string $string ]

Vedere anche:

add a note add a note

User Contributed Notes

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