ReflectionParameter::__toString

(PHP 5, PHP 7, PHP 8)

ReflectionParameter::__toString转换为字符串

描述

public ReflectionParameter::__toString(): string

获取参数的人类可读描述。

参数

此函数没有参数。

返回值

字符串。

示例

示例 #1 ReflectionParameter::__toString() 示例

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

上面的例子将输出类似于

Parameter #0 [ <required> string $string ]

参见

添加笔记

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top