PHP 8.5.0 Beta 3 available for testing

ReflectionParameter::__toString

(PHP 5, PHP 7, PHP 8)

ReflectionParameter::__toString β€” To 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

User Contributed Notes

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