名称：
	undefinedp - 判断指定的变数是否未定义。
语法：
	int undefinedp( mixed arg );

	整数 undefinedp( 混合 参数 );
用法：
	如果“arg”已定义，则传回 1。“arg”在以下的情形为未定义：

	(1) 变数设定为 call_other 呼叫不存在之函式的传回值。〈即 
	    arg = call_other( obj, "???")〉

	(2) 变数设定为读取映射变数中不存在的元素。〈即 
	    arg = map[无此关键字]〉
	(3) 还未初始化 (initialize)。
	(4) 指向已被摧毁的物件。
	(5) 〈正式的〉函式参数，对应一个失踪的实际参数。
	    (it is a function (formal) parameter that corresponds to a 
	    missing actual argument.)
作者：
	Tim Hollebeek  Beek@ZorkMUD, Lima Bean, IdeaExchange, and elsewhere
翻译：
	spock@muds.net		2000.Aug.23.	v22 版
