Skip to content

Commit 2b3e82d

Browse files
committed
Readme dateTime
1 parent 2289793 commit 2b3e82d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ try {
5959
$i = $xlsxFastEditor->readInt($worksheetId1, 'C3');
6060
$s = $xlsxFastEditor->readString($worksheetId1, 'D4');
6161
$h = $xlsxFastEditor->readHyperlink($worksheetId1, 'B4');
62+
$d = $xlsxFastEditor->readDateTime($worksheetId1, 'F4');
6263
$xlsxFastEditor->deleteRow($worksheetId1, 5);
6364
$xlsxFastEditor->writeFormula($worksheetId1, 'A1', '=B2*3');
6465
$xlsxFastEditor->writeFloat($worksheetId1, 'B2', 3.14);
@@ -101,6 +102,7 @@ try {
101102
$i = $cell->readInt();
102103
$s = $cell->readString();
103104
$h = $cell->readHyperlink();
105+
$d = $cell->readDateTime();
104106
$cell->writeFormula('=B2*3');
105107
$cell->writeFloat(3.14);
106108
$cell->writeInt(13);

0 commit comments

Comments
 (0)