I've just released a new version of php-excel extension that exposes the new functionality offered by libxl 3.2.0. The new functionality in this release includes the following: - ExcelSheet::setPrintFit(int wPages, int hPages) that fits sheet width and sheet height to wPages and hPages respectively - ExcelSheet::getPrintFit() that returns whether fit to page option is enabled, and if so to what width & height - ExcelSheet::getNamedRange(string name) that gets the named range coordianates by name, returns false if range is not found - ExcelSheet::getIndexRange(int index) that gets the named range coordianates by index, returns false if range is not found - ExcelSheet::namedRangeSize() that returns the number of named ranges in the sheet - ExcelSheet::getVerPageBreak(int index) that returns column with vertical page break at position index - ExcelSheet::getVerPageBreakSize() that returns a number of vertical page breaks in the sheet - ExcelSheet::getHorPageBreak(int index) that...