名称：
	read_file() - 把一个档案的内容读进一个字串里。
语法：
	string read_file( string file, int start_line, int number_of_lines );

	字串 read_file( 字串 档案, 整数 起始行, 整数 行数 );
用法：
	从一个档案中读入几行文字到一个字串中。第二个和第三个参数可以选择。
	如果只指定 file 的参数，整个档案都会被读进一个字串中。

	start_line 指定你要从档案的第几行开始读取。如果你指定的行数超过档
	案的尾端，或是指定的数字为负数，则会传回 0。 
参考：
	write_file, read_buffer
作者：
	Tim Hollebeek  Beek@ZorkMUD, Lima Bean, IdeaExchange, and elsewhere
翻译：
	spock@muds.net		2000.May.28.	v22 版
