ReflectionParameter::__toString

(PHP 5, PHP 7, PHP 8)

ReflectionParameter::__toStringTo string

Description

public ReflectionParameter::__toString(): string

Get a human-readable description of the parameter.

Parameters

This function has no parameters.

Return Values

The string.

Examples

Example #1 ReflectionParameter::__toString() example

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

The above example will output something similar to:

Parameter #0 [ <required> string $string ]

See Also

add a note add a note

User Contributed Notes

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