名称：
	function_profile - 对一个物件取得函式侧写 (profiling) 资讯。
语法：
	array function_profile( object ob );

	阵列 function_profile( 物件 物件 );
用法：
	传回对“ob”〈如果不予指定“ob”则是 this_object()〉的函式侧写资讯
	。
	本函式只有在驱动程式编译时定义 PROFILE_FUNCTIONS 才有效。

	此函式传回一个映射变数的阵列，每个映射是在“ob”中的函式。映射的格
	式如下：

	([	"name"     : 函式的名称,
		"calls"    : 呼叫的次数,
		"self"     : 自己耗费的 CPU 时间 (cpu time spent in self),
		"children" : 子程序耗费的 CPU 时间(cpu time spent in children)
	])

	此处的用途与 CPU 时脉的解析度有关，虽然单位为微秒 (microseconds)，
	但实际上 CPU 时钟的解析度要差得多。
参考：
	rusage, time_expression
作者：
	Tim Hollebeek  Beek@ZorkMUD, Lima Bean, IdeaExchange, and elsewhere
翻译：
	spock@muds.net		2000.Aug.28.	v22 版
