ReflectionFunction::export
(PHP 5, PHP 7)
ReflectionFunction::export — 関数をエクスポートする
警告
この関数は PHP 7.4.0 で 非推奨 になり、PHP 8.0.0 で 削除 されました。この関数に頼らないことを強く推奨します。
説明
調べた関数をエクスポートします。
参考
- ReflectionFunction::invoke() - 関数を起動する
- ReflectionFunction::__toString() - ReflectionFunction を表現する文字列を返す
+add a note
User Contributed Notes 1 note
hytest at gmail dot com ¶
13 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 ]
}
}
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google