名称：
	function_exists - 在一个物件之中找出含有指定函式的档案。
语法：
	string function_exists( string str, object ob );

	字串 function_exists( 字串 字串, 物件 物件 );
用法：
	传回物件“ob”之中定义有函式“str”之物件的档案名称。如果函式
	“str”是被定义在“ob”继承的物件中，传回的档案名称可能会与 
	“file_name(ob)”传回的不同。

	如果物件“ob”中没有定义函式“str”则传回 0。

	注意，function_exists() 不会检查“ob”的投影物件 (shadows) 或是无法
	从物件外面呼叫的函式。
参考：
	call_other
作者：
	Tim Hollebeek  Beek@ZorkMUD, Lima Bean, IdeaExchange, and elsewhere
翻译：
	spock@muds.net		2000.Aug.28.	v22 版
