(PHP 5, PHP 7, PHP 8)
ReflectionFunction::__toString — 返回 ReflectionFunction 对象的字符串表示形式
此函数没有参数。
字符串。
示例 #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 ] } }