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
14
14
15
15
There are also libraries to create new Excel documents from scratch, or for just reading some values, but not any obvious one for editing.
16
16
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.
18
18
19
19
## Use
20
20
@@ -43,9 +43,9 @@ $xlsxFastEditor = new XlsxFastEditor('test.xlsx');
43
43
$worksheetId1 = $xlsxFastEditor->getWorksheetNumber('Sheet1');
44
44
$worksheetId2 = $xlsxFastEditor->getWorksheetNumber('Sheet2');
45
45
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');
49
49
50
50
// If you want to force Excel to recalculate formulas on next load:
51
51
$xlsxFastEditor->setFullCalcOnLoad($worksheetId2, true);
You can’t perform that action at this time.
0 commit comments