downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ReflectionFunctionAbstract> <ReflectionFunction::isDisabled
[edit] Last updated: Fri, 25 May 2012

view this page in

ReflectionFunction::__toString

(PHP 5)

ReflectionFunction::__toString文字列に変換する

説明

public string ReflectionFunction::__toString ( void )

文字列に変換します。

パラメータ

この関数にはパラメータはありません。

返り値

その関数について、 ReflectionFunction::export() のような出力を返します。

例1 ReflectionFunction::__toString() の例

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

echo new 
ReflectionFunction('title');
?>

上の例の出力は、 たとえば以下のようになります。

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

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

参考



add a note add a note User Contributed Notes ReflectionFunction::__toString
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites