PHP Conference Japan 2024

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