bind_excelworkbookset_dup本页总览set_dup 批量写入指定范围的单元格 声明 enum ExcelErrorCode set_dup(mixed val, int top, int left, int bottom, int right) 参数 参数名描述val写入数据top范围最顶行left范围最左列bottom范围最底行right范围最右列 返回值 返回ExcelErrorCode 使用方式 // 批量设置(1, 1)到(2, 7)范围内单元格的内容为 "test_set_dup"excel_obj.set_dup("test_set_dup", 1, 1, 2, 7);excel_obj.save(); 返回文档