We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2289793 commit 2b3e82dCopy full SHA for 2b3e82d
README.md
@@ -59,6 +59,7 @@ try {
59
$i = $xlsxFastEditor->readInt($worksheetId1, 'C3');
60
$s = $xlsxFastEditor->readString($worksheetId1, 'D4');
61
$h = $xlsxFastEditor->readHyperlink($worksheetId1, 'B4');
62
+ $d = $xlsxFastEditor->readDateTime($worksheetId1, 'F4');
63
$xlsxFastEditor->deleteRow($worksheetId1, 5);
64
$xlsxFastEditor->writeFormula($worksheetId1, 'A1', '=B2*3');
65
$xlsxFastEditor->writeFloat($worksheetId1, 'B2', 3.14);
@@ -101,6 +102,7 @@ try {
101
102
$i = $cell->readInt();
103
$s = $cell->readString();
104
$h = $cell->readHyperlink();
105
+ $d = $cell->readDateTime();
106
$cell->writeFormula('=B2*3');
107
$cell->writeFloat(3.14);
108
$cell->writeInt(13);
0 commit comments