Conditions | 2 |
Paths | 2 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
52 | private function getSst() |
||
53 | { |
||
54 | $sst = '<sst count="'. |
||
55 | $this->sharedStringsCount.'" uniqueCount="'. |
||
56 | $this->sharedStringsLength.'" xmlns="'. |
||
57 | $this->urlSchemaFormat.'">' |
||
58 | ; |
||
59 | |||
60 | foreach ($this->sharedStrings as $s => $item) { |
||
61 | $sst .= '<si><t>'.str_replace("'", "'", htmlspecialchars($s)).'</t></si>'; |
||
62 | } |
||
63 | |||
64 | $sst .= '</sst>'; |
||
65 | |||
66 | return $sst; |
||
67 | } |
||
68 | } |
||
69 |