1. read_bytes(3) LP MudOSv21c7 (7 Jul 1996)
    2. 函数名称:
    3. read_bytes() - 从一个档案或是一个字串读取一连串连续的位元组
    4. (byte).
    5. 函数语法:
    6. string read_bytes( string path, int start, int length );
    7. 字串 read_bytes( 字串 path, 整数 start, 整数 length );
    8. 函数用法:
    9. 这个函式读取 path 指定的档案内容, start 指定的第几位元组
    10. 开始读取到 length 指定长度的资料. 传回的位元组为字串的型态.
    11. 注意, start + length 的大小绝对不可以超过档案的末端, 否则
    12. read_bytes() 读取的动作会失败. 如果不指定第二及第三个参数,
    13. 则会读取整个档案.
    14. 参考函数:
    15. read_file(3), write_bytes(3)
    16. 手册翻译:
    17. Phoebus@ZH 97.May.24. (Writen 5/23/97)