File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ but for simply reading & writing basic values from existing Excel workbooks, `Ph
1414
1515There are also libraries to create new Excel documents from scratch, or for just reading some values, but not any obvious one for editing.
1616
17- ` php-xlsx-fast-editor ` addresses the need of quickly reading and writing & editing existing Excel documents.
17+ ` php-xlsx-fast-editor ` addresses the need of quickly reading & writing & editing existing Excel documents.
1818
1919## Use
2020
@@ -43,9 +43,9 @@ $xlsxFastEditor = new XlsxFastEditor('test.xlsx');
4343$worksheetId1 = $xlsxFastEditor->getWorksheetNumber('Sheet1');
4444$worksheetId2 = $xlsxFastEditor->getWorksheetNumber('Sheet2');
4545
46- echo $xlsxFastEditor->readFloat($worksheetId1, 'B2'), "\n" ;
47- echo $xlsxFastEditor->readInt($worksheetId1, 'C3'), "\n" ;
48- echo $xlsxFastEditor->readString($worksheetId2, 'D4'), "\n" ;
46+ $f = $xlsxFastEditor->readFloat($worksheetId1, 'B2');
47+ $c = $xlsxFastEditor->readInt($worksheetId1, 'C3');
48+ $i = $xlsxFastEditor->readString($worksheetId2, 'D4');
4949
5050// If you want to force Excel to recalculate formulas on next load:
5151$xlsxFastEditor->setFullCalcOnLoad($worksheetId2, true);
You can’t perform that action at this time.
0 commit comments