ReflectionFunction::export

(PHP 5, PHP 7)

ReflectionFunction::exportExports function

설명

public static string ReflectionFunction::export ( string $name [, string $return ] )

Exports a Reflected function.

인수

name

내보낼 reflection

return

TRUE로 설정하면 export를 반환하고, 반대의 경우는 버립니다. FALSE로 설정(기본값)은 반대를 수행합니다.

반환값

return 인수를 TRUE로 설정하면, export를 string으로 반환합니다. 그렇지 않으면 NULL을 반환합니다.

참고

add a note add a note

User Contributed Notes 1 note

up
1
hytest at gmail dot com
12 years ago
Example:

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

echo
ReflectionFunction::export('title',true);

?>

Output:

Function [ <user> function title ] {
  @@ /path/to/file.php 2 - 5

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