範例
<?php
function title($title, $name)
{
return sprintf("%s. %s\r\n", $title, $name);
}
echo ReflectionFunction::export('title',true);
?>
輸出
Function [ <user> function title ] {
@@ /path/to/file.php 2 - 5
- 參數 [2] {
參數 #0 [ <required> $title ]
參數 #1 [ <required> $name ]
}
}