名称：
	explode - 打断一个字串。
语法：
	string array explode( string str, string del );

	字串 阵列 explode( 字串 字串, 字串 分隔 );
用法：
	explode() 传回一个字串的阵列 (array)，此阵列是字串“str”以“del”
	分界打断的片段。
范例：
	explode( str, " " ); 会传回“str”中所有英文单字的字串阵列〈假设
	“str”是英文句子，每一个单字由空白字元隔开〉。
参考：
	sscanf, replace_string, strsrch
作者：
	Tim Hollebeek  Beek@ZorkMUD, Lima Bean, IdeaExchange, and elsewhere
翻译：
	spock@muds.net		2000.Aug.27.	v22 版
