ReflectionFunction::__toString

(PHP 5, PHP 7, PHP 8)

ReflectionFunction::__toString返回 ReflectionFunction 对象的字符串表示形式

说明

public ReflectionFunction::__toString(): string

获取函数、其参数和返回值的人类可读描述。

参数

此函数没有参数。

返回值

字符串。

示例

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

<?php
function title($title, $name)
{
return
sprintf("%s. %s\r\n", $title, $name);
}

echo new
ReflectionFunction('title');
?>

上面的示例将输出类似于以下内容

Function [ <user> function title ] {
  @@ Command line code 1 - 1

  - Parameters [2] {
    Parameter #0 [ <required> $title ]
    Parameter #1 [ <required> $name ]
  }
}

添加笔记

用户贡献的笔记

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