名稱：
	read_bytes() - 從一個檔案讀取一連串連續的位元組	(byte) 送到一個字
		       串中。
語法：
	string read_bytes( string path, int start, int length );

	字串 read_bytes( 字串 路徑, 整數 起始, 整數 長度 );
用法：
	這個函式讀取 path 指定的檔案內容，從 start 指定的第幾位元組開始讀
	取到 length 指定長度的資料。傳回的位元組為字串的型態。注意，start
	+ length 的大小絕對不可以超過檔案的末端，否則 read_bytes() 讀取的
	動作會失敗。如果不指定第二及第三個參數，則會讀取整個檔案。
參考：
	read_file, write_bytes
作者：
	Tim Hollebeek  Beek@ZorkMUD, Lima Bean, IdeaExchange, and elsewhere
翻譯：
	spock@muds.net		2000.May.28.	v22 版
