2.0.1
Changed (semantics)
- Optional getter/setter methods on
ExcelFormatandExcelFontnow treat explicitnullas "getter mode" instead of silently mutating state. Previously the|lZPP weak-coercednullto0, fired the setter, and reset the underlying slot —$F->numberFormat(null)reset format7to0on a Format already pointed at format7, and$f->name(null)reset"Arial"to""because|Sweak-coercednullto"". The new semantics: argument omitted ornull→ getter; any non-null value → setter (range-checked against the libxlintboundary). AffectsExcelFormat::numberFormat,horizontalAlign,verticalAlign,wrap,rotate,indent,shrinkToFit,borderStyle,borderColor,borderLeftStyle/Color,borderRightStyle/Color,borderTopStyle/Color,borderBottomStyle/Color,borderDiagonalStyle/Color,fillPattern,patternForegroundColor,patternBackgroundColor,locked,hidden,ExcelFont::size,italics,strike,bold,color,mode,underline,name. Stubs and IDE reference docs are updated accordingly (?int $foo = null,?bool $foo = null,?string $name = null).
Added
- Comprehensive test coverage for FormControl (all 7 control types)
- Tests for previously untested methods: Book::addPictureAsLink, Book::conditionalFormat, Sheet::removeComment
- Tests for untested optional parameters across ExcelBook, ExcelSheet, ExcelFormat, ExcelFilterColumn, ExcelRichString, ExcelConditionalFormatting, and ExcelTable classes
- Licensed-only test for row 0 access and large cell counts
Changed
- Tag convention: 2.0.1+ uses bare semver tags (e.g.
2.0.1). 2.0.0 was tagged asv2.0.0. - Migrated to stub-driven arginfo (
excel.stub.php+ generatedexcel_arginfo.h). Method parameter and return types are now declared and visible to Reflection / IDEs / static analyzers; previously they were untyped at the engine boundary on most methods. Behavior is unchanged.excel.cshrinks by 2010 lines (the inline arginfo blocks and per-class function-entry tables now come from the generated header). libxl-version-conditional methods (addConditionalFormatting,loadInfoRaw,setPassword, etc.) use#if LIBXL_VERSION >= ...blocks in the stub; gen_stub passes them through to the generated header. php_excel.hcarries a polyfill forzend_register_internal_class_with_flags(added in PHP 8.4) so the generated arginfo header compiles cleanly against the project's PHP 8.3 minimum.
Fixed (correctness)
Book::getSheet(),Book::deleteSheet(),Book::getSheetName(),Book::sheetType(),Book::copySheet(),Book::setActiveSheet(),Book::activeSheet(),Book::conditionalFormat(),Book::getPicture(),Book::moveSheet(),Sheet::delHyperlink(),Sheet::merge(),Sheet::delMergeByIndex(),Sheet::getNamedRange(),Sheet::getVerPageBreak(),Sheet::getHorPageBreak(),Sheet::getPictureInfo(),Sheet::hyperlink(),Sheet::table(),Sheet::removePictureByIndex(),Sheet::formControl(),Sheet::getTableByIndex(),Sheet::conditionalFormatting(),Sheet::removeConditionalFormatting(),Sheet::addPictureScaled(),Sheet::addPictureDim(),AutoFilter::column(),AutoFilter::columnByIndex(),AutoFilter::setSort(),AutoFilter::addSort(),FilterColumn::__construct(),FilterColumn::filter(),RichString::getText(),FormControl::__construct(),FormControl::item(), andTable::columnName()now reject sheet/index values that exceedINT_MAXinstead of silently wrapping when libxl narrows toint. PreviouslygetSheet(2**32)aliased to index0anddeleteSheet(2**32)deleted sheet0; the same narrowing applied to every otherzend_long-to-libxl-intboundary, includingaddPictureScaled/addPictureDimwherepic_idand the dimensional / offset / pos arguments wrapped — apic_id = 2**32call used to alias to picture index 0 and silently embed the wrong picture into the sheet.- Non-index integer setters on
ExcelFormatandExcelFont(numberFormat, allborder*Style/border*Color,fillPattern,pattern*Color,Font::size,Font::color,Font::mode,Font::underline,rotate,indent) now reject values outside[0, INT_MAX]instead of silently truncating on the implicitintcast —numberFormat(2**32 + 1)andFont::color(2**32 + 1)previously both became1. - Stub argument types and runtime ZPP signatures for
Sheet::groupRows(),Sheet::groupCols(),Sheet::setPrintHeaders(), andExcelFormat::wrap()/shrinkToFit()/locked()/hidden()are now consistent. The stubs declaredint/string/mixedfor parameters the C parsed asbool, fataling under debug PHP's arginfo / ZPP checker on calls likesetPrintHeaders(true). The IDE reference files indocs/(ExcelSheet.php,ExcelFormat.php,ExcelAutoFilter.php) were also updated so their published signatures match runtime reflection —groupRows/groupColsnow publishbool $collapse = false,setPrintHeaderspublishesbool $value,wrap/shrinkToFit/locked/hiddenpublishbool ... = false, andExcelAutoFilter::setRefpublishes the required fourintarguments instead of optional defaults. ExcelAutoFilter::__construct()stub now requires theExcelSheetargument (was advertised as optional nullable). The C had always required it; reflection-driven callers replaying the documented defaultnullgotTypeError.Sheet::addDataValidationDouble()left the optional$val_2parameter uninitialized when the caller used a non-(NOT)BETWEEN operator. The C declareddouble val_1, val_2;without a default, so the unused slot forwarded a stack-garbage value toxlSheetAddDataValidationDoubleEx. Initialized to0.0so the unused slot is deterministic.- Stub defaults for
Sheet::addDataValidation()andSheet::addDataValidationDouble()now match the C implementation:allow_blank=true,show_inputmessage=true,show_errormessage=true,error_style=1. The previous stub saidfalse/0, so reflection-driven callers usinggetDefaultValue()got opposite behavior from the documented defaults. Sheet::addDataValidation()andSheet::addDataValidationDouble()now treatnull(and, for the string variant, an empty string) as "second value not supplied". The check that BETWEEN/NOT-BETWEEN operators require a second endpoint previously only looked atZEND_NUM_ARGS(), so a reflection-driven caller replayinggetDefaultValue()(""for string,0.0for double) sneaked past the guard and produced a one-sided rule. Stub$val_2is now?string $val_2 = null/?float $val_2 = null. The double variant uses FAST_ZPPZ_PARAM_DOUBLE_OR_NULLso PHP's standarddcoercion (numeric strings, bool, int) still applies to$val_2, matching$val_1. Only explicitnull(or omission) trips the BETWEEN guard.Book::activeSheet()'s stub default is now-1(the C "getter mode" sentinel). The previous default of0caused reflection-driven calls to silently switch the workbook back to sheet index 0 instead of just returning the current active sheet.- Stale ZPP comments in
excel.stub.phpforinsertSheet,setCellFormat, andwriteErrornow reflect the typed-object signatures actually parsed by the C (O/O!).
Security
-
ExcelSheet::setColWidth()andsetRowHeight()now reject non-ExcelFormatobjects withTypeErrorinstead of crashing. ZPP previously parsed the optional format as a generic zval, so passing a scalar would feed garbage toFORMAT_FROM_OBJECT()and segfault. -
Sheet::applyFilter2(),ConditionalFormatting::addRule()/addTopRule()/addOpNumRule()/addOpStrRule()/addAboveAverageRule()/addTimePeriodRule(), andSheet::writeRichStr()now route their object arguments through the standard*_FROM_OBJECTmacros so a staleExcelAutoFilter/ExcelConditionalFormat/ExcelRichString(afterBook::load()etc.) raises a warning and returnsfalseinstead of dereferencing a freed libxl handle. -
ZPP signatures for
Sheet::setCellFormat(),Sheet::writeError(), andBook::insertSheet()were tightened from genericotoO/O!with the expected class entry. Previously the methods accepted any object, reaching the*_FROM_OBJECTmacros with astdClassand producing an arginfo/ZPP fatal under debug PHP and undefined behaviour otherwise. Calls now raiseTypeErrorat the boundary as the stub advertises. -
Book::loadInfo()andBook::addPictureAsLink()now runphp_check_open_basedir()before handing the path to libxl. The two methods talked to libxl directly without a stream wrapper, so paths outsideopen_basedirwere readable / linkable into otherwise permitted output workbooks. -
ExcelFormat::__construct(),ExcelFont::__construct(),ExcelSheet::__construct(),ExcelRichString::__construct(),ExcelConditionalFormat::__construct(), andExcelCoreProperties::__construct()now throw when handed an uninitializedExcelBook(e.g. one obtained viaReflectionClass::newInstanceWithoutConstructor()). PreviouslyBOOK_FROM_OBJECTwarned and returnedfalse, but PHP ignores constructor return values, so the caller received an unusable child wrapper that crashed only on first use. -
Sheet::writeRow()andSheet::writeCol()pre-validate the full target range before mutating any cell. An overflowing run (e.g. XLSwriteRow(1, [a, b], 255)where col255+1=256is past the limit) used to write the first cells and only fail on the overflowing one, leaving partial data behind. Now it fails before any write. The start coordinate is validated before any signed arithmetic on it, so extreme inputs (PHP_INT_MIN/PHP_INT_MAX) don't trip UBSan. -
Book::moveSheet()bumps the book generation on success. Previously existingExcelSheetwrappers silently retargeted to the wrong sheet when indices shifted under them. -
Stale child wrapper crashes: an
ExcelSheet/ExcelFormat/ExcelFont/etc. retained from beforeBook::load(),Book::loadFile(),Book::loadInfo(),Book::loadInfoRaw(),Book::clear(),Book::deleteSheet(), or a manualBook::__construct()reuse now refuses to call libxl with a stale handle. Previously, calling a method on such a wrapper could segfault (pure virtual method called,SEGV in xlFormatNumFormatA, etc.). A book-level generation counter is bumped on each invalidating operation; child wrappers stamp the value at creation and check it before every libxl call, returningfalsewith a warning when stale. Sibling sheets must be re-fetched afterdeleteSheet(). -
Stale-wrapper checks extended to
ExcelFontandExcelFormatclone handlers, which previously bypassed the FROM_OBJECT macros and calledxlBookAddFont/xlBookAddFormatdirectly with freed handles.clone $fon a stale wrapper now throws an exception instead of producing an ASAN SEGV. -
NUL-byte protection extended to
ExcelConditionalFormatting::add2ColorScaleFormulaRule()andadd3ColorScaleFormulaRule()(formula strings) and toExcelSheet::addDataValidationDouble()(prompt/error strings) — all previously passedZSTR_VAL()directly to libxl, where embedded NULs would silently truncate the value while peer methods rejected it. -
ExcelBook::__construct()with a NUL-bearing license name or key now throws an exception. Previously it emitted a warning and returned an initialized workbook, since PHP ignores constructor return values — callers received a usable object built from rejected input. -
NUL-byte gaps closed on the libxl boundary. Embedded NUL bytes are now rejected (rather than silently truncating the value) in
Sheet::write(),Sheet::writeRow(),Sheet::writeCol()cell strings;Book::getSheetByName();Book::loadFile(),Book::save(),Book::addPictureFromFile()paths; and theExcelBook::__construct()license name/key arguments. -
Book::getSheetByName()now compares names with binary-safe length-aware comparison rather thanstrcmp/strcasecmp, eliminating prefix-match false positives on names that differ only past an embedded NUL.
Fixed
Sheet::write()/writeRow()/writeCol()now returnfalsefor unsupported zval types (array, object, resource). Previously they emitted a warning but returnedtrue, leading callers to believe data was persisted when the cell was actually left empty.- Coordinate validation:
Sheet::read(),Sheet::write(),Sheet::cellType(),Sheet::cellFormat(),Sheet::setCellFormat(),Sheet::isDate(),Sheet::isFormula(),Sheet::writeRow(), andSheet::writeCol()now reject cell coordinates outside the workbook's format-specific limits — XLSX (1048576 rows x 16384 cols) for books created withnew ExcelBook(null, null, true), XLS (65536 rows x 256 cols) otherwise — instead of silently truncating to libxl'sintand returning empty cells. Read paths previously accepted any in-range integer because libxl doesn't range-check reads.Sheet::insertRow(),Sheet::removeRow(),Sheet::insertCol(), andSheet::removeCol()validate against the appropriate axis limit for both arguments (the second argument is a row or column endpoint, not the perpendicular axis). Coordinate validation also coversSheet::rowColToAddr(),setActiveCell(),setPrintArea(),setMerge(),getMerge(),deleteMerge(),clear()(range),copy(),splitSheet(),setTopLeftView(),readComment(),writeComment(),removeComment(),removePicture(),readRichStr(),writeRichStr(),hyperlinkIndex(),writeError(),addPictureScaled(),addPictureDim(),setColWidth(),setColPx(),setRowPx(),setBorder(),addTable(),setPrintRepeatRows(),setPrintRepeatCols(),addDataValidation()/addDataValidationDouble(),AutoFilter::setRef(),Sheet::addConditionalFormatting(),ConditionalFormatting::addRange(),ConditionalFormatting::__construct()(libxl 5.1.0+ 5-arg form),Sheet::colWidth(),rowHeight(),colWidthPx(),rowHeightPx(),colFormat(),rowFormat(),rowHidden(),setRowHidden(),colHidden(),setColHidden(),groupRows(),groupCols(),setAutoFitArea(), andaddIgnoredError(). ExcelConditionalFormatting::__construct()stub now exposes the libxl-5.1.0+ 5-argument form via gen_stub#if/#elseso reflection reports the same shape that ZPP actually parses. Previously the stub advertised a 1-argument constructor and instantiating it on libxl 5.1.0 failed withArgumentCountError. Bad-coordinate inputs now throw an exception (PHP ignores constructor return values, soRETURN_FALSEwould have left the caller with an uninitialized wrapper).ExcelAutoFilter::__construct(),ExcelFilterColumn::__construct(),ExcelConditionalFormatting::__construct(),ExcelTable::__construct(), andExcelFormControl::__construct()now throw when handed a stale parent (sheet or autofilter from a book that has been reloaded, cleared, or reinitialized). Previously the underlying*_FROM_OBJECTmacros emitted a warning andRETURN_FALSE, but PHP ignores constructor return values, so callers received an uninitialized wrapper that failed only on first use.ExcelBook::addFont(null),ExcelBook::addFormat(null), andExcelSheet::writeRow(..., null)now match the nullable arginfo declared in the stub. ZPP was|O/la|lO(non-nullable), so passing the explicitnulladvertised by reflection raisedTypeError. Switched to|O!/la|lO!.ExcelSheet::writeCol()'s first argument is now named$columnin the stub (was$row). The C implementation has always parsed it as the column index; reflection and named arguments were misleading callers.Sheet::read(),Sheet::readRow(), andSheet::readCol()stub defaults aligned with the C implementation. The stubs declaredread_formula = falseandend_column/end_row = 0; the C parses defaults are1(true) and-1("read to last column/row"). Calling these methods with no optional arguments behaves as the C has always behaved, but reflection and static analysis now match.
Performance
Book::loadFile(),Book::save($path), andBook::addPictureFromFile()use libxl's direct path APIs (xlBookLoad/xlBookSave/xlBookAddPicture) for plain filesystem paths that pass theopen_basedircheck. Previously every call read or wrote the entire workbook through a PHP stream into a full in-memory buffer before handing the bytes to libxl, doubling peak memory for large files. Stream-wrapper paths (phar://,php://, etc.) still go through the original wrapper machinery.Sheet::write()/writeRow()/writeCol()withExcelFormat::AS_DATEand no explicit format now share a single book-cached date format instead of allocating a new format per cell. Five sequential AS_DATE writes used to growBook::getAllFormats()by five entries; they now grow by one. Bulk date exports stay well below libxl's per-book format-table cap. The cache is cleared on book-state resets that free libxl's format table (load(),loadFile(),loadInfo(),loadInfoRaw(),clear(),__construct()reuse), so post-reset AS_DATE writes don't reuse the freed handle and still record as dates. Sheet-index shifts (deleteSheet(),moveSheet()) preserve the cache because libxl preserves the format table across them.Sheet::horPageBreak()andSheet::verPageBreak()validate the page-break coordinate against the row/column axis of the workbook respectively. They previously accepted up toINT_MAX, so XLSXhorPageBreak(1048576)and XLSverPageBreak(300)would succeed and silently produce a no-op break.Sheet::addHyperlink()andSheet::setNamedRange()now use the workbook-aware row- and column-range validators instead of the genericINT_MAXcheck, matching the rest of the range-taking sheet methods.Sheet::autoFilter(),Sheet::applyFilter(),Sheet::removeFilter(), andSheet::splitInfo()now callZEND_PARSE_PARAMETERS_NONE()so calling them with extra arguments raisesArgumentCountErrorrather than a debug- PHP arginfo/ZPP mismatch fatal.- Stub signatures corrected to match the C implementation:
Book::addPictureFromFile(string),Book::addPictureFromString(string)(weremixed/bool);Sheet::insertRow/insertCol/removeRow/removeCol(int, int)(the spurious thirdupdate_named_rangesparameter is removed — the underlying C ZPP only ever parsed"ll");Sheet::horPageBreak(int, bool),Sheet::verPageBreak(int, bool)(wereint, int);Sheet::setPaper(int)(wasstring);Sheet::setPrintRepeatRows/Cols(int, int)(had drifted tomixed/bool);ConditionalFormatting::addRule/addOpNumRule/ addOpStrRule/addAboveAverageRule/addTimePeriodRulestopIfTrueisbool(wasstring/float/int);ConditionalFormatting::addTopRulebottomisbool(wasint);ConditionalFormatting::addAboveAverageRulestdDevisint(wasbool);ExcelTable::__constructrowFirst:int/hasHeaders:bool/style:int(werestring/int/bool). Reflection, IDEs, and static analyzers now see the true signatures. - LibXL 4.6.0 test compatibility: tests calling LibXL 5.x-only APIs (
addConditionalFormatting4-arg,dpiAwareness,conditionalFormatSize, etc.) now skip viamethod_exists()instead of failing. - Test 002 (date pack/unpack) timezone detection to work cross-platform