-
Notifications
You must be signed in to change notification settings - Fork 498
/
SpreadsheetReader_XLSX.php
1211 lines (1072 loc) · 29 KB
/
SpreadsheetReader_XLSX.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Class for parsing XLSX files specifically
*
* @author Martins Pilsetnieks
*/
class SpreadsheetReader_XLSX implements Iterator, Countable
{
const CELL_TYPE_BOOL = 'b';
const CELL_TYPE_NUMBER = 'n';
const CELL_TYPE_ERROR = 'e';
const CELL_TYPE_SHARED_STR = 's';
const CELL_TYPE_STR = 'str';
const CELL_TYPE_INLINE_STR = 'inlineStr';
/**
* Number of shared strings that can be reasonably cached, i.e., that aren't read from file but stored in memory.
* If the total number of shared strings is higher than this, caching is not used.
* If this value is null, shared strings are cached regardless of amount.
* With large shared string caches there are huge performance gains, however a lot of memory could be used which
* can be a problem, especially on shared hosting.
*/
const SHARED_STRING_CACHE_LIMIT = 50000;
private $Options = array(
'TempDir' => '',
'ReturnDateTimeObjects' => false
);
private static $RuntimeInfo = array(
'GMPSupported' => false
);
private $Valid = false;
/**
* @var SpreadsheetReader_* Handle for the reader object
*/
private $Handle = false;
// Worksheet file
/**
* @var string Path to the worksheet XML file
*/
private $WorksheetPath = false;
/**
* @var XMLReader XML reader object for the worksheet XML file
*/
private $Worksheet = false;
// Shared strings file
/**
* @var string Path to shared strings XML file
*/
private $SharedStringsPath = false;
/**
* @var XMLReader XML reader object for the shared strings XML file
*/
private $SharedStrings = false;
/**
* @var array Shared strings cache, if the number of shared strings is low enough
*/
private $SharedStringCache = array();
// Workbook data
/**
* @var SimpleXMLElement XML object for the workbook XML file
*/
private $WorkbookXML = false;
// Style data
/**
* @var SimpleXMLElement XML object for the styles XML file
*/
private $StylesXML = false;
/**
* @var array Container for cell value style data
*/
private $Styles = array();
private $TempDir = '';
private $TempFiles = array();
private $CurrentRow = false;
// Runtime parsing data
/**
* @var int Current row in the file
*/
private $Index = 0;
/**
* @var array Data about separate sheets in the file
*/
private $Sheets = false;
private $SharedStringCount = 0;
private $SharedStringIndex = 0;
private $LastSharedStringValue = null;
private $RowOpen = false;
private $SSOpen = false;
private $SSForwarded = false;
private static $BuiltinFormats = array(
0 => '',
1 => '0',
2 => '0.00',
3 => '#,##0',
4 => '#,##0.00',
9 => '0%',
10 => '0.00%',
11 => '0.00E+00',
12 => '# ?/?',
13 => '# ??/??',
14 => 'mm-dd-yy',
15 => 'd-mmm-yy',
16 => 'd-mmm',
17 => 'mmm-yy',
18 => 'h:mm AM/PM',
19 => 'h:mm:ss AM/PM',
20 => 'h:mm',
21 => 'h:mm:ss',
22 => 'm/d/yy h:mm',
37 => '#,##0 ;(#,##0)',
38 => '#,##0 ;[Red](#,##0)',
39 => '#,##0.00;(#,##0.00)',
40 => '#,##0.00;[Red](#,##0.00)',
45 => 'mm:ss',
46 => '[h]:mm:ss',
47 => 'mmss.0',
48 => '##0.0E+0',
49 => '@',
// CHT & CHS
27 => '[$-404]e/m/d',
30 => 'm/d/yy',
36 => '[$-404]e/m/d',
50 => '[$-404]e/m/d',
57 => '[$-404]e/m/d',
// THA
59 => 't0',
60 => 't0.00',
61 =>'t#,##0',
62 => 't#,##0.00',
67 => 't0%',
68 => 't0.00%',
69 => 't# ?/?',
70 => 't# ??/??'
);
private $Formats = array();
private static $DateReplacements = array(
'All' => array(
'\\' => '',
'am/pm' => 'A',
'yyyy' => 'Y',
'yy' => 'y',
'mmmmm' => 'M',
'mmmm' => 'F',
'mmm' => 'M',
':mm' => ':i',
'mm' => 'm',
'm' => 'n',
'dddd' => 'l',
'ddd' => 'D',
'dd' => 'd',
'd' => 'j',
'ss' => 's',
'.s' => ''
),
'24H' => array(
'hh' => 'H',
'h' => 'G'
),
'12H' => array(
'hh' => 'h',
'h' => 'G'
)
);
private static $BaseDate = false;
private static $DecimalSeparator = '.';
private static $ThousandSeparator = '';
private static $CurrencyCode = '';
/**
* @var array Cache for already processed format strings
*/
private $ParsedFormatCache = array();
/**
* @param string Path to file
* @param array Options:
* TempDir => string Temporary directory path
* ReturnDateTimeObjects => bool True => dates and times will be returned as PHP DateTime objects, false => as strings
*/
public function __construct($Filepath, array $Options = null)
{
if (!is_readable($Filepath))
{
throw new Exception('SpreadsheetReader_XLSX: File not readable ('.$Filepath.')');
}
$this -> TempDir = isset($Options['TempDir']) && is_writable($Options['TempDir']) ?
$Options['TempDir'] :
sys_get_temp_dir();
$this -> TempDir = rtrim($this -> TempDir, DIRECTORY_SEPARATOR);
$this -> TempDir = $this -> TempDir.DIRECTORY_SEPARATOR.uniqid().DIRECTORY_SEPARATOR;
$Zip = new ZipArchive;
$Status = $Zip -> open($Filepath);
if ($Status !== true)
{
throw new Exception('SpreadsheetReader_XLSX: File not readable ('.$Filepath.') (Error '.$Status.')');
}
// Getting the general workbook information
if ($Zip -> locateName('xl/workbook.xml') !== false)
{
$this -> WorkbookXML = new SimpleXMLElement($Zip -> getFromName('xl/workbook.xml'));
}
// Extracting the XMLs from the XLSX zip file
if ($Zip -> locateName('xl/sharedStrings.xml') !== false)
{
$this -> SharedStringsPath = $this -> TempDir.'xl'.DIRECTORY_SEPARATOR.'sharedStrings.xml';
$Zip -> extractTo($this -> TempDir, 'xl/sharedStrings.xml');
$this -> TempFiles[] = $this -> TempDir.'xl'.DIRECTORY_SEPARATOR.'sharedStrings.xml';
if (is_readable($this -> SharedStringsPath))
{
$this -> SharedStrings = new XMLReader;
$this -> SharedStrings -> open($this -> SharedStringsPath);
$this -> PrepareSharedStringCache();
}
}
$Sheets = $this -> Sheets();
foreach ($this -> Sheets as $Index => $Name)
{
if ($Zip -> locateName('xl/worksheets/sheet'.$Index.'.xml') !== false)
{
$Zip -> extractTo($this -> TempDir, 'xl/worksheets/sheet'.$Index.'.xml');
$this -> TempFiles[] = $this -> TempDir.'xl'.DIRECTORY_SEPARATOR.'worksheets'.DIRECTORY_SEPARATOR.'sheet'.$Index.'.xml';
}
}
$this -> ChangeSheet(0);
// If worksheet is present and is OK, parse the styles already
if ($Zip -> locateName('xl/styles.xml') !== false)
{
$this -> StylesXML = new SimpleXMLElement($Zip -> getFromName('xl/styles.xml'));
if ($this -> StylesXML && $this -> StylesXML -> cellXfs && $this -> StylesXML -> cellXfs -> xf)
{
foreach ($this -> StylesXML -> cellXfs -> xf as $Index => $XF)
{
// Format #0 is a special case - it is the "General" format that is applied regardless of applyNumberFormat
if ($XF -> attributes() -> applyNumberFormat || (0 == (int)$XF -> attributes() -> numFmtId))
{
$FormatId = (int)$XF -> attributes() -> numFmtId;
// If format ID >= 164, it is a custom format and should be read from styleSheet\numFmts
$this -> Styles[] = $FormatId;
}
else
{
// 0 for "General" format
$this -> Styles[] = 0;
}
}
}
if ($this -> StylesXML -> numFmts && $this -> StylesXML -> numFmts -> numFmt)
{
foreach ($this -> StylesXML -> numFmts -> numFmt as $Index => $NumFmt)
{
$this -> Formats[(int)$NumFmt -> attributes() -> numFmtId] = (string)$NumFmt -> attributes() -> formatCode;
}
}
unset($this -> StylesXML);
}
$Zip -> close();
// Setting base date
if (!self::$BaseDate)
{
self::$BaseDate = new DateTime;
self::$BaseDate -> setTimezone(new DateTimeZone('UTC'));
self::$BaseDate -> setDate(1900, 1, 0);
self::$BaseDate -> setTime(0, 0, 0);
}
// Decimal and thousand separators
if (!self::$DecimalSeparator && !self::$ThousandSeparator && !self::$CurrencyCode)
{
$Locale = localeconv();
self::$DecimalSeparator = $Locale['decimal_point'];
self::$ThousandSeparator = $Locale['thousands_sep'];
self::$CurrencyCode = $Locale['int_curr_symbol'];
}
if (function_exists('gmp_gcd'))
{
self::$RuntimeInfo['GMPSupported'] = true;
}
}
/**
* Destructor, destroys all that remains (closes and deletes temp files)
*/
public function __destruct()
{
foreach ($this -> TempFiles as $TempFile)
{
@unlink($TempFile);
}
// Better safe than sorry - shouldn't try deleting '.' or '/', or '..'.
if (strlen($this -> TempDir) > 2)
{
@rmdir($this -> TempDir.'xl'.DIRECTORY_SEPARATOR.'worksheets');
@rmdir($this -> TempDir.'xl');
@rmdir($this -> TempDir);
}
if ($this -> Worksheet && $this -> Worksheet instanceof XMLReader)
{
$this -> Worksheet -> close();
unset($this -> Worksheet);
}
unset($this -> WorksheetPath);
if ($this -> SharedStrings && $this -> SharedStrings instanceof XMLReader)
{
$this -> SharedStrings -> close();
unset($this -> SharedStrings);
}
unset($this -> SharedStringsPath);
if (isset($this -> StylesXML))
{
unset($this -> StylesXML);
}
if ($this -> WorkbookXML)
{
unset($this -> WorkbookXML);
}
}
/**
* Retrieves an array with information about sheets in the current file
*
* @return array List of sheets (key is sheet index, value is name)
*/
public function Sheets()
{
if ($this -> Sheets === false)
{
$this -> Sheets = array();
foreach ($this -> WorkbookXML -> sheets -> sheet as $Index => $Sheet)
{
$Attributes = $Sheet -> attributes('r', true);
foreach ($Attributes as $Name => $Value)
{
if ($Name == 'id')
{
$SheetID = (int)str_replace('rId', '', (string)$Value);
break;
}
}
$this -> Sheets[$SheetID] = (string)$Sheet['name'];
}
ksort($this -> Sheets);
}
return array_values($this -> Sheets);
}
/**
* Changes the current sheet in the file to another
*
* @param int Sheet index
*
* @return bool True if sheet was successfully changed, false otherwise.
*/
public function ChangeSheet($Index)
{
$RealSheetIndex = false;
$Sheets = $this -> Sheets();
if (isset($Sheets[$Index]))
{
$SheetIndexes = array_keys($this -> Sheets);
$RealSheetIndex = $SheetIndexes[$Index];
}
$TempWorksheetPath = $this -> TempDir.'xl/worksheets/sheet'.$RealSheetIndex.'.xml';
if ($RealSheetIndex !== false && is_readable($TempWorksheetPath))
{
$this -> WorksheetPath = $TempWorksheetPath;
$this -> rewind();
return true;
}
return false;
}
/**
* Creating shared string cache if the number of shared strings is acceptably low (or there is no limit on the amount
*/
private function PrepareSharedStringCache()
{
while ($this -> SharedStrings -> read())
{
if ($this -> SharedStrings -> name == 'sst')
{
$this -> SharedStringCount = $this -> SharedStrings -> getAttribute('count');
break;
}
}
if (!$this -> SharedStringCount || (self::SHARED_STRING_CACHE_LIMIT < $this -> SharedStringCount && self::SHARED_STRING_CACHE_LIMIT !== null))
{
return false;
}
$CacheIndex = 0;
$CacheValue = '';
while ($this -> SharedStrings -> read())
{
switch ($this -> SharedStrings -> name)
{
case 'si':
if ($this -> SharedStrings -> nodeType == XMLReader::END_ELEMENT)
{
$this -> SharedStringCache[$CacheIndex] = $CacheValue;
$CacheIndex++;
$CacheValue = '';
}
break;
case 't':
if ($this -> SharedStrings -> nodeType == XMLReader::END_ELEMENT)
{
continue;
}
$CacheValue .= $this -> SharedStrings -> readString();
break;
}
}
$this -> SharedStrings -> close();
return true;
}
/**
* Retrieves a shared string value by its index
*
* @param int Shared string index
*
* @return string Value
*/
private function GetSharedString($Index)
{
if ((self::SHARED_STRING_CACHE_LIMIT === null || self::SHARED_STRING_CACHE_LIMIT > 0) && !empty($this -> SharedStringCache))
{
if (isset($this -> SharedStringCache[$Index]))
{
return $this -> SharedStringCache[$Index];
}
else
{
return '';
}
}
// If the desired index is before the current, rewind the XML
if ($this -> SharedStringIndex > $Index)
{
$this -> SSOpen = false;
$this -> SharedStrings -> close();
$this -> SharedStrings -> open($this -> SharedStringsPath);
$this -> SharedStringIndex = 0;
$this -> LastSharedStringValue = null;
$this -> SSForwarded = false;
}
// Finding the unique string count (if not already read)
if ($this -> SharedStringIndex == 0 && !$this -> SharedStringCount)
{
while ($this -> SharedStrings -> read())
{
if ($this -> SharedStrings -> name == 'sst')
{
$this -> SharedStringCount = $this -> SharedStrings -> getAttribute('uniqueCount');
break;
}
}
}
// If index of the desired string is larger than possible, don't even bother.
if ($this -> SharedStringCount && ($Index >= $this -> SharedStringCount))
{
return '';
}
// If an index with the same value as the last already fetched is requested
// (any further traversing the tree would get us further away from the node)
if (($Index == $this -> SharedStringIndex) && ($this -> LastSharedStringValue !== null))
{
return $this -> LastSharedStringValue;
}
// Find the correct <si> node with the desired index
while ($this -> SharedStringIndex <= $Index)
{
// SSForwarded is set further to avoid double reading in case nodes are skipped.
if ($this -> SSForwarded)
{
$this -> SSForwarded = false;
}
else
{
$ReadStatus = $this -> SharedStrings -> read();
if (!$ReadStatus)
{
break;
}
}
if ($this -> SharedStrings -> name == 'si')
{
if ($this -> SharedStrings -> nodeType == XMLReader::END_ELEMENT)
{
$this -> SSOpen = false;
$this -> SharedStringIndex++;
}
else
{
$this -> SSOpen = true;
if ($this -> SharedStringIndex < $Index)
{
$this -> SSOpen = false;
$this -> SharedStrings -> next('si');
$this -> SSForwarded = true;
$this -> SharedStringIndex++;
continue;
}
else
{
break;
}
}
}
}
$Value = '';
// Extract the value from the shared string
if ($this -> SSOpen && ($this -> SharedStringIndex == $Index))
{
while ($this -> SharedStrings -> read())
{
switch ($this -> SharedStrings -> name)
{
case 't':
if ($this -> SharedStrings -> nodeType == XMLReader::END_ELEMENT)
{
continue;
}
$Value .= $this -> SharedStrings -> readString();
break;
case 'si':
if ($this -> SharedStrings -> nodeType == XMLReader::END_ELEMENT)
{
$this -> SSOpen = false;
$this -> SSForwarded = true;
break 2;
}
break;
}
}
}
if ($Value)
{
$this -> LastSharedStringValue = $Value;
}
return $Value;
}
/**
* Formats the value according to the index
*
* @param string Cell value
* @param int Format index
*
* @return string Formatted cell value
*/
private function FormatValue($Value, $Index)
{
if (!is_numeric($Value))
{
return $Value;
}
if (isset($this -> Styles[$Index]) && ($this -> Styles[$Index] !== false))
{
$Index = $this -> Styles[$Index];
}
else
{
return $Value;
}
// A special case for the "General" format
if ($Index == 0)
{
return $this -> GeneralFormat($Value);
}
$Format = array();
if (isset($this -> ParsedFormatCache[$Index]))
{
$Format = $this -> ParsedFormatCache[$Index];
}
if (!$Format)
{
$Format = array(
'Code' => false,
'Type' => false,
'Scale' => 1,
'Thousands' => false,
'Currency' => false
);
if (isset(self::$BuiltinFormats[$Index]))
{
$Format['Code'] = self::$BuiltinFormats[$Index];
}
elseif (isset($this -> Formats[$Index]))
{
$Format['Code'] = $this -> Formats[$Index];
}
// Format code found, now parsing the format
if ($Format['Code'])
{
$Sections = explode(';', $Format['Code']);
$Format['Code'] = $Sections[0];
switch (count($Sections))
{
case 2:
if ($Value < 0)
{
$Format['Code'] = $Sections[1];
}
break;
case 3:
case 4:
if ($Value < 0)
{
$Format['Code'] = $Sections[1];
}
elseif ($Value == 0)
{
$Format['Code'] = $Sections[2];
}
break;
}
}
// Stripping colors
$Format['Code'] = trim(preg_replace('{^\[[[:alpha:]]+\]}i', '', $Format['Code']));
// Percentages
if (substr($Format['Code'], -1) == '%')
{
$Format['Type'] = 'Percentage';
}
elseif (preg_match('{^(\[\$[[:alpha:]]*-[0-9A-F]*\])*[hmsdy]}i', $Format['Code']))
{
$Format['Type'] = 'DateTime';
$Format['Code'] = trim(preg_replace('{^(\[\$[[:alpha:]]*-[0-9A-F]*\])}i', '', $Format['Code']));
$Format['Code'] = strtolower($Format['Code']);
$Format['Code'] = strtr($Format['Code'], self::$DateReplacements['All']);
if (strpos($Format['Code'], 'A') === false)
{
$Format['Code'] = strtr($Format['Code'], self::$DateReplacements['24H']);
}
else
{
$Format['Code'] = strtr($Format['Code'], self::$DateReplacements['12H']);
}
}
elseif ($Format['Code'] == '[$EUR ]#,##0.00_-')
{
$Format['Type'] = 'Euro';
}
else
{
// Removing skipped characters
$Format['Code'] = preg_replace('{_.}', '', $Format['Code']);
// Removing unnecessary escaping
$Format['Code'] = preg_replace("{\\\\}", '', $Format['Code']);
// Removing string quotes
$Format['Code'] = str_replace(array('"', '*'), '', $Format['Code']);
// Removing thousands separator
if (strpos($Format['Code'], '0,0') !== false || strpos($Format['Code'], '#,#') !== false)
{
$Format['Thousands'] = true;
}
$Format['Code'] = str_replace(array('0,0', '#,#'), array('00', '##'), $Format['Code']);
// Scaling (Commas indicate the power)
$Scale = 1;
$Matches = array();
if (preg_match('{(0|#)(,+)}', $Format['Code'], $Matches))
{
$Scale = pow(1000, strlen($Matches[2]));
// Removing the commas
$Format['Code'] = preg_replace(array('{0,+}', '{#,+}'), array('0', '#'), $Format['Code']);
}
$Format['Scale'] = $Scale;
if (preg_match('{#?.*\?\/\?}', $Format['Code']))
{
$Format['Type'] = 'Fraction';
}
else
{
$Format['Code'] = str_replace('#', '', $Format['Code']);
$Matches = array();
if (preg_match('{(0+)(\.?)(0*)}', preg_replace('{\[[^\]]+\]}', '', $Format['Code']), $Matches))
{
$Integer = $Matches[1];
$DecimalPoint = $Matches[2];
$Decimals = $Matches[3];
$Format['MinWidth'] = strlen($Integer) + strlen($DecimalPoint) + strlen($Decimals);
$Format['Decimals'] = $Decimals;
$Format['Precision'] = strlen($Format['Decimals']);
$Format['Pattern'] = '%0'.$Format['MinWidth'].'.'.$Format['Precision'].'f';
}
}
$Matches = array();
if (preg_match('{\[\$(.*)\]}u', $Format['Code'], $Matches))
{
$CurrFormat = $Matches[0];
$CurrCode = $Matches[1];
$CurrCode = explode('-', $CurrCode);
if ($CurrCode)
{
$CurrCode = $CurrCode[0];
}
if (!$CurrCode)
{
$CurrCode = self::$CurrencyCode;
}
$Format['Currency'] = $CurrCode;
}
$Format['Code'] = trim($Format['Code']);
}
$this -> ParsedFormatCache[$Index] = $Format;
}
// Applying format to value
if ($Format)
{
if ($Format['Code'] == '@')
{
return (string)$Value;
}
// Percentages
elseif ($Format['Type'] == 'Percentage')
{
if ($Format['Code'] === '0%')
{
$Value = round(100 * $Value, 0).'%';
}
else
{
$Value = sprintf('%.2f%%', round(100 * $Value, 2));
}
}
// Dates and times
elseif ($Format['Type'] == 'DateTime')
{
$Days = (int)$Value;
// Correcting for Feb 29, 1900
if ($Days > 60)
{
$Days--;
}
// At this point time is a fraction of a day
$Time = ($Value - (int)$Value);
$Seconds = 0;
if ($Time)
{
// Here time is converted to seconds
// Some loss of precision will occur
$Seconds = (int)($Time * 86400);
}
$Value = clone self::$BaseDate;
$Value -> add(new DateInterval('P'.$Days.'D'.($Seconds ? 'T'.$Seconds.'S' : '')));
if (!$this -> Options['ReturnDateTimeObjects'])
{
$Value = $Value -> format($Format['Code']);
}
else
{
// A DateTime object is returned
}
}
elseif ($Format['Type'] == 'Euro')
{
$Value = 'EUR '.sprintf('%1.2f', $Value);
}
else
{
// Fractional numbers
if ($Format['Type'] == 'Fraction' && ($Value != (int)$Value))
{
$Integer = floor(abs($Value));
$Decimal = fmod(abs($Value), 1);
// Removing the integer part and decimal point
$Decimal *= pow(10, strlen($Decimal) - 2);
$DecimalDivisor = pow(10, strlen($Decimal));
if (self::$RuntimeInfo['GMPSupported'])
{
$GCD = gmp_strval(gmp_gcd($Decimal, $DecimalDivisor));
}
else
{
$GCD = self::GCD($Decimal, $DecimalDivisor);
}
$AdjDecimal = $DecimalPart/$GCD;
$AdjDecimalDivisor = $DecimalDivisor/$GCD;
if (
strpos($Format['Code'], '0') !== false ||
strpos($Format['Code'], '#') !== false ||
substr($Format['Code'], 0, 3) == '? ?'
)
{
// The integer part is shown separately apart from the fraction
$Value = ($Value < 0 ? '-' : '').
$Integer ? $Integer.' ' : ''.
$AdjDecimal.'/'.
$AdjDecimalDivisor;
}
else
{
// The fraction includes the integer part
$AdjDecimal += $Integer * $AdjDecimalDivisor;
$Value = ($Value < 0 ? '-' : '').
$AdjDecimal.'/'.
$AdjDecimalDivisor;
}
}
else
{
// Scaling
$Value = $Value / $Format['Scale'];
if (!empty($Format['MinWidth']) && $Format['Decimals'])
{
if ($Format['Thousands'])
{
$Value = number_format($Value, $Format['Precision'],
self::$DecimalSeparator, self::$ThousandSeparator);
}
else
{
$Value = sprintf($Format['Pattern'], $Value);
}
$Value = preg_replace('{(0+)(\.?)(0*)}', $Value, $Format['Code']);
}
}
// Currency/Accounting
if ($Format['Currency'])
{
$Value = preg_replace('', $Format['Currency'], $Value);
}
}
}
return $Value;
}
/**
* Attempts to approximate Excel's "general" format.
*
* @param mixed Value
*
* @return mixed Result
*/
public function GeneralFormat($Value)
{
// Numeric format
if (is_numeric($Value))
{
$Value = (float)$Value;
}
return $Value;
}
// !Iterator interface methods
/**
* Rewind the Iterator to the first element.
* Similar to the reset() function for arrays in PHP
*/
public function rewind()
{
// Removed the check whether $this -> Index == 0 otherwise ChangeSheet doesn't work properly
// If the worksheet was already iterated, XML file is reopened.
// Otherwise it should be at the beginning anyway
if ($this -> Worksheet instanceof XMLReader)
{
$this -> Worksheet -> close();
}
else
{
$this -> Worksheet = new XMLReader;
}
$this -> Worksheet -> open($this -> WorksheetPath);
$this -> Valid = true;
$this -> RowOpen = false;
$this -> CurrentRow = false;
$this -> Index = 0;
}
/**
* Return the current element.
* Similar to the current() function for arrays in PHP
*
* @return mixed current element from the collection
*/
public function current()
{
if ($this -> Index == 0 && $this -> CurrentRow === false)
{
$this -> next();
$this -> Index--;
}
return $this -> CurrentRow;
}
/**
* Move forward to next element.
* Similar to the next() function for arrays in PHP
*/
public function next()
{
$this -> Index++;
$this -> CurrentRow = array();
if (!$this -> RowOpen)
{
while ($this -> Valid = $this -> Worksheet -> read())
{
if ($this -> Worksheet -> name == 'row')
{
// Getting the row spanning area (stored as e.g., 1:12)
// so that the last cells will be present, even if empty