PageRenderTime 49ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/htdocs/includes/phpexcel/PHPExcel/Shared/String.php

https://bitbucket.org/speedealing/speedealing
PHP | 706 lines | 387 code | 60 blank | 259 comment | 62 complexity | 1905ab75a34ce0619108aee0ff0a8ccb MD5 | raw file
Possible License(s): LGPL-3.0, LGPL-2.1, GPL-3.0, MIT
  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (c) 2006 - 2011 PHPExcel
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * @category PHPExcel
  22. * @package PHPExcel_Shared
  23. * @copyright Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
  24. * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
  25. * @version 1.7.6, 2011-02-27
  26. */
  27. /**
  28. * PHPExcel_Shared_String
  29. *
  30. * @category PHPExcel
  31. * @package PHPExcel_Shared
  32. * @copyright Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
  33. */
  34. class PHPExcel_Shared_String
  35. {
  36. /** Constants */
  37. /** Regular Expressions */
  38. // Fraction
  39. const STRING_REGEXP_FRACTION = '(-?)(\d+)\s+(\d+\/\d+)';
  40. /**
  41. * Control characters array
  42. *
  43. * @var string[]
  44. */
  45. private static $_controlCharacters = array();
  46. /**
  47. * SYLK Characters array
  48. *
  49. * $var array
  50. */
  51. private static $_SYLKCharacters = array();
  52. /**
  53. * Decimal separator
  54. *
  55. * @var string
  56. */
  57. private static $_decimalSeparator;
  58. /**
  59. * Thousands separator
  60. *
  61. * @var string
  62. */
  63. private static $_thousandsSeparator;
  64. /**
  65. * Currency code
  66. *
  67. * @var string
  68. */
  69. private static $_currencyCode;
  70. /**
  71. * Is mbstring extension avalable?
  72. *
  73. * @var boolean
  74. */
  75. private static $_isMbstringEnabled;
  76. /**
  77. * Is iconv extension avalable?
  78. *
  79. * @var boolean
  80. */
  81. private static $_isIconvEnabled;
  82. /**
  83. * Build control characters array
  84. */
  85. private static function _buildControlCharacters() {
  86. for ($i = 0; $i <= 31; ++$i) {
  87. if ($i != 9 && $i != 10 && $i != 13) {
  88. $find = '_x' . sprintf('%04s' , strtoupper(dechex($i))) . '_';
  89. $replace = chr($i);
  90. self::$_controlCharacters[$find] = $replace;
  91. }
  92. }
  93. }
  94. /**
  95. * Build SYLK characters array
  96. */
  97. private static function _buildSYLKCharacters()
  98. {
  99. self::$_SYLKCharacters = array(
  100. "\x1B 0" => chr(0),
  101. "\x1B 1" => chr(1),
  102. "\x1B 2" => chr(2),
  103. "\x1B 3" => chr(3),
  104. "\x1B 4" => chr(4),
  105. "\x1B 5" => chr(5),
  106. "\x1B 6" => chr(6),
  107. "\x1B 7" => chr(7),
  108. "\x1B 8" => chr(8),
  109. "\x1B 9" => chr(9),
  110. "\x1B :" => chr(10),
  111. "\x1B ;" => chr(11),
  112. "\x1B <" => chr(12),
  113. "\x1B :" => chr(13),
  114. "\x1B >" => chr(14),
  115. "\x1B ?" => chr(15),
  116. "\x1B!0" => chr(16),
  117. "\x1B!1" => chr(17),
  118. "\x1B!2" => chr(18),
  119. "\x1B!3" => chr(19),
  120. "\x1B!4" => chr(20),
  121. "\x1B!5" => chr(21),
  122. "\x1B!6" => chr(22),
  123. "\x1B!7" => chr(23),
  124. "\x1B!8" => chr(24),
  125. "\x1B!9" => chr(25),
  126. "\x1B!:" => chr(26),
  127. "\x1B!;" => chr(27),
  128. "\x1B!<" => chr(28),
  129. "\x1B!=" => chr(29),
  130. "\x1B!>" => chr(30),
  131. "\x1B!?" => chr(31),
  132. "\x1B'?" => chr(127),
  133. "\x1B(0" => '€', // 128 in CP1252
  134. "\x1B(2" => '‚', // 130 in CP1252
  135. "\x1B(3" => 'ƒ', // 131 in CP1252
  136. "\x1B(4" => '„', // 132 in CP1252
  137. "\x1B(5" => '…', // 133 in CP1252
  138. "\x1B(6" => '†', // 134 in CP1252
  139. "\x1B(7" => '‡', // 135 in CP1252
  140. "\x1B(8" => 'ˆ', // 136 in CP1252
  141. "\x1B(9" => '‰', // 137 in CP1252
  142. "\x1B(:" => 'Š', // 138 in CP1252
  143. "\x1B(;" => '‹', // 139 in CP1252
  144. "\x1BNj" => 'Œ', // 140 in CP1252
  145. "\x1B(>" => 'Ž', // 142 in CP1252
  146. "\x1B)1" => '‘', // 145 in CP1252
  147. "\x1B)2" => '’', // 146 in CP1252
  148. "\x1B)3" => '“', // 147 in CP1252
  149. "\x1B)4" => '”', // 148 in CP1252
  150. "\x1B)5" => '•', // 149 in CP1252
  151. "\x1B)6" => '–', // 150 in CP1252
  152. "\x1B)7" => '—', // 151 in CP1252
  153. "\x1B)8" => '˜', // 152 in CP1252
  154. "\x1B)9" => '™', // 153 in CP1252
  155. "\x1B):" => 'š', // 154 in CP1252
  156. "\x1B);" => '›', // 155 in CP1252
  157. "\x1BNz" => 'œ', // 156 in CP1252
  158. "\x1B)>" => 'ž', // 158 in CP1252
  159. "\x1B)?" => 'Ÿ', // 159 in CP1252
  160. "\x1B*0" => ' ', // 160 in CP1252
  161. "\x1BN!" => '¡', // 161 in CP1252
  162. "\x1BN\"" => '¢', // 162 in CP1252
  163. "\x1BN#" => '£', // 163 in CP1252
  164. "\x1BN(" => '¤', // 164 in CP1252
  165. "\x1BN%" => '¥', // 165 in CP1252
  166. "\x1B*6" => '¦', // 166 in CP1252
  167. "\x1BN'" => '§', // 167 in CP1252
  168. "\x1BNH " => '¨', // 168 in CP1252
  169. "\x1BNS" => '©', // 169 in CP1252
  170. "\x1BNc" => 'ª', // 170 in CP1252
  171. "\x1BN+" => '«', // 171 in CP1252
  172. "\x1B*<" => '¬', // 172 in CP1252
  173. "\x1B*=" => '­', // 173 in CP1252
  174. "\x1BNR" => '®', // 174 in CP1252
  175. "\x1B*?" => '¯', // 175 in CP1252
  176. "\x1BN0" => '°', // 176 in CP1252
  177. "\x1BN1" => '±', // 177 in CP1252
  178. "\x1BN2" => '²', // 178 in CP1252
  179. "\x1BN3" => '³', // 179 in CP1252
  180. "\x1BNB " => '´', // 180 in CP1252
  181. "\x1BN5" => 'µ', // 181 in CP1252
  182. "\x1BN6" => '¶', // 182 in CP1252
  183. "\x1BN7" => '·', // 183 in CP1252
  184. "\x1B+8" => '¸', // 184 in CP1252
  185. "\x1BNQ" => '¹', // 185 in CP1252
  186. "\x1BNk" => 'º', // 186 in CP1252
  187. "\x1BN;" => '»', // 187 in CP1252
  188. "\x1BN<" => '¼', // 188 in CP1252
  189. "\x1BN=" => '½', // 189 in CP1252
  190. "\x1BN>" => '¾', // 190 in CP1252
  191. "\x1BN?" => '¿', // 191 in CP1252
  192. "\x1BNAA" => 'À', // 192 in CP1252
  193. "\x1BNBA" => 'Á', // 193 in CP1252
  194. "\x1BNCA" => 'Â', // 194 in CP1252
  195. "\x1BNDA" => 'Ã', // 195 in CP1252
  196. "\x1BNHA" => 'Ä', // 196 in CP1252
  197. "\x1BNJA" => 'Å', // 197 in CP1252
  198. "\x1BNa" => 'Æ', // 198 in CP1252
  199. "\x1BNKC" => 'Ç', // 199 in CP1252
  200. "\x1BNAE" => 'È', // 200 in CP1252
  201. "\x1BNBE" => 'É', // 201 in CP1252
  202. "\x1BNCE" => 'Ê', // 202 in CP1252
  203. "\x1BNHE" => 'Ë', // 203 in CP1252
  204. "\x1BNAI" => 'Ì', // 204 in CP1252
  205. "\x1BNBI" => 'Í', // 205 in CP1252
  206. "\x1BNCI" => 'Î', // 206 in CP1252
  207. "\x1BNHI" => 'Ï', // 207 in CP1252
  208. "\x1BNb" => 'Ð', // 208 in CP1252
  209. "\x1BNDN" => 'Ñ', // 209 in CP1252
  210. "\x1BNAO" => 'Ò', // 210 in CP1252
  211. "\x1BNBO" => 'Ó', // 211 in CP1252
  212. "\x1BNCO" => 'Ô', // 212 in CP1252
  213. "\x1BNDO" => 'Õ', // 213 in CP1252
  214. "\x1BNHO" => 'Ö', // 214 in CP1252
  215. "\x1B-7" => '×', // 215 in CP1252
  216. "\x1BNi" => 'Ø', // 216 in CP1252
  217. "\x1BNAU" => 'Ù', // 217 in CP1252
  218. "\x1BNBU" => 'Ú', // 218 in CP1252
  219. "\x1BNCU" => 'Û', // 219 in CP1252
  220. "\x1BNHU" => 'Ü', // 220 in CP1252
  221. "\x1B-=" => 'Ý', // 221 in CP1252
  222. "\x1BNl" => 'Þ', // 222 in CP1252
  223. "\x1BN{" => 'ß', // 223 in CP1252
  224. "\x1BNAa" => 'à', // 224 in CP1252
  225. "\x1BNBa" => 'á', // 225 in CP1252
  226. "\x1BNCa" => 'â', // 226 in CP1252
  227. "\x1BNDa" => 'ã', // 227 in CP1252
  228. "\x1BNHa" => 'ä', // 228 in CP1252
  229. "\x1BNJa" => 'å', // 229 in CP1252
  230. "\x1BNq" => 'æ', // 230 in CP1252
  231. "\x1BNKc" => 'ç', // 231 in CP1252
  232. "\x1BNAe" => 'è', // 232 in CP1252
  233. "\x1BNBe" => 'é', // 233 in CP1252
  234. "\x1BNCe" => 'ê', // 234 in CP1252
  235. "\x1BNHe" => 'ë', // 235 in CP1252
  236. "\x1BNAi" => 'ì', // 236 in CP1252
  237. "\x1BNBi" => 'í', // 237 in CP1252
  238. "\x1BNCi" => 'î', // 238 in CP1252
  239. "\x1BNHi" => 'ï', // 239 in CP1252
  240. "\x1BNs" => 'ð', // 240 in CP1252
  241. "\x1BNDn" => 'ñ', // 241 in CP1252
  242. "\x1BNAo" => 'ò', // 242 in CP1252
  243. "\x1BNBo" => 'ó', // 243 in CP1252
  244. "\x1BNCo" => 'ô', // 244 in CP1252
  245. "\x1BNDo" => 'õ', // 245 in CP1252
  246. "\x1BNHo" => 'ö', // 246 in CP1252
  247. "\x1B/7" => '÷', // 247 in CP1252
  248. "\x1BNy" => 'ø', // 248 in CP1252
  249. "\x1BNAu" => 'ù', // 249 in CP1252
  250. "\x1BNBu" => 'ú', // 250 in CP1252
  251. "\x1BNCu" => 'û', // 251 in CP1252
  252. "\x1BNHu" => 'ü', // 252 in CP1252
  253. "\x1B/=" => 'ý', // 253 in CP1252
  254. "\x1BN|" => 'þ', // 254 in CP1252
  255. "\x1BNHy" => 'ÿ', // 255 in CP1252
  256. );
  257. }
  258. /**
  259. * Get whether mbstring extension is available
  260. *
  261. * @return boolean
  262. */
  263. public static function getIsMbstringEnabled()
  264. {
  265. if (isset(self::$_isMbstringEnabled)) {
  266. return self::$_isMbstringEnabled;
  267. }
  268. self::$_isMbstringEnabled = function_exists('mb_convert_encoding') ?
  269. true : false;
  270. return self::$_isMbstringEnabled;
  271. }
  272. /**
  273. * Get whether iconv extension is available
  274. *
  275. * @return boolean
  276. */
  277. public static function getIsIconvEnabled()
  278. {
  279. if (isset(self::$_isIconvEnabled)) {
  280. return self::$_isIconvEnabled;
  281. }
  282. // Fail if iconv doesn't exist
  283. if (!function_exists('iconv')) {
  284. self::$_isIconvEnabled = false;
  285. return false;
  286. }
  287. // Sometimes iconv is not working, and e.g. iconv('UTF-8', 'UTF-16LE', 'x') just returns false,
  288. if (!@iconv('UTF-8', 'UTF-16LE', 'x')) {
  289. self::$_isIconvEnabled = false;
  290. return false;
  291. }
  292. // Sometimes iconv_substr('A', 0, 1, 'UTF-8') just returns false in PHP 5.2.0
  293. // we cannot use iconv in that case either (http://bugs.php.net/bug.php?id=37773)
  294. if (!@iconv_substr('A', 0, 1, 'UTF-8')) {
  295. self::$_isIconvEnabled = false;
  296. return false;
  297. }
  298. // CUSTOM: IBM AIX iconv() does not work
  299. if ( defined('PHP_OS') && @stristr(PHP_OS, 'AIX')
  300. && defined('ICONV_IMPL') && (@strcasecmp(ICONV_IMPL, 'unknown') == 0)
  301. && defined('ICONV_VERSION') && (@strcasecmp(ICONV_VERSION, 'unknown') == 0) )
  302. {
  303. self::$_isIconvEnabled = false;
  304. return false;
  305. }
  306. // If we reach here no problems were detected with iconv
  307. self::$_isIconvEnabled = true;
  308. return true;
  309. }
  310. public static function buildCharacterSets() {
  311. if(empty(self::$_controlCharacters)) {
  312. self::_buildControlCharacters();
  313. }
  314. if(empty(self::$_SYLKCharacters)) {
  315. self::_buildSYLKCharacters();
  316. }
  317. }
  318. /**
  319. * Convert from OpenXML escaped control character to PHP control character
  320. *
  321. * Excel 2007 team:
  322. * ----------------
  323. * That's correct, control characters are stored directly in the shared-strings table.
  324. * We do encode characters that cannot be represented in XML using the following escape sequence:
  325. * _xHHHH_ where H represents a hexadecimal character in the character's value...
  326. * So you could end up with something like _x0008_ in a string (either in a cell value (<v>)
  327. * element or in the shared string <t> element.
  328. *
  329. * @param string $value Value to unescape
  330. * @return string
  331. */
  332. public static function ControlCharacterOOXML2PHP($value = '') {
  333. return str_replace( array_keys(self::$_controlCharacters), array_values(self::$_controlCharacters), $value );
  334. }
  335. /**
  336. * Convert from PHP control character to OpenXML escaped control character
  337. *
  338. * Excel 2007 team:
  339. * ----------------
  340. * That's correct, control characters are stored directly in the shared-strings table.
  341. * We do encode characters that cannot be represented in XML using the following escape sequence:
  342. * _xHHHH_ where H represents a hexadecimal character in the character's value...
  343. * So you could end up with something like _x0008_ in a string (either in a cell value (<v>)
  344. * element or in the shared string <t> element.
  345. *
  346. * @param string $value Value to escape
  347. * @return string
  348. */
  349. public static function ControlCharacterPHP2OOXML($value = '') {
  350. return str_replace( array_values(self::$_controlCharacters), array_keys(self::$_controlCharacters), $value );
  351. }
  352. /**
  353. * Try to sanitize UTF8, stripping invalid byte sequences. Not perfect. Does not surrogate characters.
  354. *
  355. * @param string $value
  356. * @return string
  357. */
  358. public static function SanitizeUTF8($value)
  359. {
  360. if (self::getIsIconvEnabled()) {
  361. $value = @iconv('UTF-8', 'UTF-8', $value);
  362. return $value;
  363. }
  364. if (self::getIsMbstringEnabled()) {
  365. $value = mb_convert_encoding($value, 'UTF-8', 'UTF-8');
  366. return $value;
  367. }
  368. // else, no conversion
  369. return $value;
  370. }
  371. /**
  372. * Check if a string contains UTF8 data
  373. *
  374. * @param string $value
  375. * @return boolean
  376. */
  377. public static function IsUTF8($value = '') {
  378. return utf8_encode(utf8_decode($value)) === $value;
  379. }
  380. /**
  381. * Formats a numeric value as a string for output in various output writers forcing
  382. * point as decimal separator in case locale is other than English.
  383. *
  384. * @param mixed $value
  385. * @return string
  386. */
  387. public static function FormatNumber($value) {
  388. if (is_float($value)) {
  389. return str_replace(',', '.', $value);
  390. }
  391. return (string) $value;
  392. }
  393. /**
  394. * Converts a UTF-8 string into BIFF8 Unicode string data (8-bit string length)
  395. * Writes the string using uncompressed notation, no rich text, no Asian phonetics
  396. * If mbstring extension is not available, ASCII is assumed, and compressed notation is used
  397. * although this will give wrong results for non-ASCII strings
  398. * see OpenOffice.org's Documentation of the Microsoft Excel File Format, sect. 2.5.3
  399. *
  400. * @param string $value UTF-8 encoded string
  401. * @return string
  402. */
  403. public static function UTF8toBIFF8UnicodeShort($value)
  404. {
  405. // character count
  406. $ln = self::CountCharacters($value, 'UTF-8');
  407. // option flags
  408. $opt = (self::getIsIconvEnabled() || self::getIsMbstringEnabled()) ?
  409. 0x0001 : 0x0000;
  410. // characters
  411. $chars = self::ConvertEncoding($value, 'UTF-16LE', 'UTF-8');
  412. $data = pack('CC', $ln, $opt) . $chars;
  413. return $data;
  414. }
  415. /**
  416. * Converts a UTF-8 string into BIFF8 Unicode string data (16-bit string length)
  417. * Writes the string using uncompressed notation, no rich text, no Asian phonetics
  418. * If mbstring extension is not available, ASCII is assumed, and compressed notation is used
  419. * although this will give wrong results for non-ASCII strings
  420. * see OpenOffice.org's Documentation of the Microsoft Excel File Format, sect. 2.5.3
  421. *
  422. * @param string $value UTF-8 encoded string
  423. * @return string
  424. */
  425. public static function UTF8toBIFF8UnicodeLong($value)
  426. {
  427. // character count
  428. $ln = self::CountCharacters($value, 'UTF-8');
  429. // option flags
  430. $opt = (self::getIsIconvEnabled() || self::getIsMbstringEnabled()) ?
  431. 0x0001 : 0x0000;
  432. // characters
  433. $chars = self::ConvertEncoding($value, 'UTF-16LE', 'UTF-8');
  434. $data = pack('vC', $ln, $opt) . $chars;
  435. return $data;
  436. }
  437. /**
  438. * Convert string from one encoding to another. First try iconv, then mbstring, or no convertion
  439. *
  440. * @param string $value
  441. * @param string $to Encoding to convert to, e.g. 'UTF-8'
  442. * @param string $from Encoding to convert from, e.g. 'UTF-16LE'
  443. * @return string
  444. */
  445. public static function ConvertEncoding($value, $to, $from)
  446. {
  447. if (self::getIsIconvEnabled()) {
  448. $value = iconv($from, $to, $value);
  449. return $value;
  450. }
  451. if (self::getIsMbstringEnabled()) {
  452. $value = mb_convert_encoding($value, $to, $from);
  453. return $value;
  454. }
  455. if($from == 'UTF-16LE'){
  456. return self::utf16_decode($value, false);
  457. }else if($from == 'UTF-16BE'){
  458. return self::utf16_decode($value);
  459. }
  460. // else, no conversion
  461. return $value;
  462. }
  463. /**
  464. * Decode UTF-16 encoded strings.
  465. *
  466. * Can handle both BOM'ed data and un-BOM'ed data.
  467. * Assumes Big-Endian byte order if no BOM is available.
  468. * This function was taken from http://php.net/manual/en/function.utf8-decode.php
  469. * and $bom_be parameter added.
  470. *
  471. * @param string $str UTF-16 encoded data to decode.
  472. * @return string UTF-8 / ISO encoded data.
  473. * @access public
  474. * @version 0.2 / 2010-05-13
  475. * @author Rasmus Andersson {@link http://rasmusandersson.se/}
  476. * @author vadik56
  477. */
  478. public static function utf16_decode( $str, $bom_be=true ) {
  479. if( strlen($str) < 2 ) return $str;
  480. $c0 = ord($str{0});
  481. $c1 = ord($str{1});
  482. if( $c0 == 0xfe && $c1 == 0xff ) { $str = substr($str,2); }
  483. elseif( $c0 == 0xff && $c1 == 0xfe ) { $str = substr($str,2); $bom_be = false; }
  484. $len = strlen($str);
  485. $newstr = '';
  486. for($i=0;$i<$len;$i+=2) {
  487. if( $bom_be ) { $val = ord($str{$i}) << 4; $val += ord($str{$i+1}); }
  488. else { $val = ord($str{$i+1}) << 4; $val += ord($str{$i}); }
  489. $newstr .= ($val == 0x228) ? "\n" : chr($val);
  490. }
  491. return $newstr;
  492. }
  493. /**
  494. * Get character count. First try mbstring, then iconv, finally strlen
  495. *
  496. * @param string $value
  497. * @param string $enc Encoding
  498. * @return int Character count
  499. */
  500. public static function CountCharacters($value, $enc = 'UTF-8')
  501. {
  502. if (self::getIsIconvEnabled()) {
  503. return iconv_strlen($value, $enc);
  504. }
  505. if (self::getIsMbstringEnabled()) {
  506. return mb_strlen($value, $enc);
  507. }
  508. // else strlen
  509. return strlen($value);
  510. }
  511. /**
  512. * Get a substring of a UTF-8 encoded string
  513. *
  514. * @param string $pValue UTF-8 encoded string
  515. * @param int $start Start offset
  516. * @param int $length Maximum number of characters in substring
  517. * @return string
  518. */
  519. public static function Substring($pValue = '', $pStart = 0, $pLength = 0)
  520. {
  521. if (self::getIsIconvEnabled()) {
  522. return iconv_substr($pValue, $pStart, $pLength, 'UTF-8');
  523. }
  524. if (self::getIsMbstringEnabled()) {
  525. return mb_substr($pValue, $pStart, $pLength, 'UTF-8');
  526. }
  527. // else substr
  528. return substr($pValue, $pStart, $pLength);
  529. }
  530. /**
  531. * Identify whether a string contains a fractional numeric value,
  532. * and convert it to a numeric if it is
  533. *
  534. * @param string &$operand string value to test
  535. * @return boolean
  536. */
  537. public static function convertToNumberIfFraction(&$operand) {
  538. if (preg_match('/^'.self::STRING_REGEXP_FRACTION.'$/i', $operand, $match)) {
  539. $sign = ($match[1] == '-') ? '-' : '+';
  540. $fractionFormula = '='.$sign.$match[2].$sign.$match[3];
  541. $operand = PHPExcel_Calculation::getInstance()->_calculateFormulaValue($fractionFormula);
  542. return true;
  543. }
  544. return false;
  545. } // function convertToNumberIfFraction()
  546. /**
  547. * Get the decimal separator. If it has not yet been set explicitly, try to obtain number
  548. * formatting information from locale.
  549. *
  550. * @return string
  551. */
  552. public static function getDecimalSeparator()
  553. {
  554. if (!isset(self::$_decimalSeparator)) {
  555. $localeconv = localeconv();
  556. self::$_decimalSeparator = $localeconv['decimal_point'] != ''
  557. ? $localeconv['decimal_point'] : $localeconv['mon_decimal_point'];
  558. if (self::$_decimalSeparator == '') {
  559. // Default to .
  560. self::$_decimalSeparator = '.';
  561. }
  562. }
  563. return self::$_decimalSeparator;
  564. }
  565. /**
  566. * Set the decimal separator. Only used by PHPExcel_Style_NumberFormat::toFormattedString()
  567. * to format output by PHPExcel_Writer_HTML and PHPExcel_Writer_PDF
  568. *
  569. * @param string $pValue Character for decimal separator
  570. */
  571. public static function setDecimalSeparator($pValue = '.')
  572. {
  573. self::$_decimalSeparator = $pValue;
  574. }
  575. /**
  576. * Get the thousands separator. If it has not yet been set explicitly, try to obtain number
  577. * formatting information from locale.
  578. *
  579. * @return string
  580. */
  581. public static function getThousandsSeparator()
  582. {
  583. if (!isset(self::$_thousandsSeparator)) {
  584. $localeconv = localeconv();
  585. self::$_thousandsSeparator = $localeconv['thousands_sep'] != ''
  586. ? $localeconv['thousands_sep'] : $localeconv['mon_thousands_sep'];
  587. }
  588. return self::$_thousandsSeparator;
  589. }
  590. /**
  591. * Set the thousands separator. Only used by PHPExcel_Style_NumberFormat::toFormattedString()
  592. * to format output by PHPExcel_Writer_HTML and PHPExcel_Writer_PDF
  593. *
  594. * @param string $pValue Character for thousands separator
  595. */
  596. public static function setThousandsSeparator($pValue = ',')
  597. {
  598. self::$_thousandsSeparator = $pValue;
  599. }
  600. /**
  601. * Get the currency code. If it has not yet been set explicitly, try to obtain the
  602. * symbol information from locale.
  603. *
  604. * @return string
  605. */
  606. public static function getCurrencyCode()
  607. {
  608. if (!isset(self::$_currencyCode)) {
  609. $localeconv = localeconv();
  610. self::$_currencyCode = $localeconv['currency_symbol'] != ''
  611. ? $localeconv['currency_symbol'] : $localeconv['int_curr_symbol'];
  612. if (self::$_currencyCode == '') {
  613. // Default to $
  614. self::$_currencyCode = '$';
  615. }
  616. }
  617. return self::$_currencyCode;
  618. }
  619. /**
  620. * Set the currency code. Only used by PHPExcel_Style_NumberFormat::toFormattedString()
  621. * to format output by PHPExcel_Writer_HTML and PHPExcel_Writer_PDF
  622. *
  623. * @param string $pValue Character for currency code
  624. */
  625. public static function setCurrencyCode($pValue = '$')
  626. {
  627. self::$_currencyCode = $pValue;
  628. }
  629. /**
  630. * Convert SYLK encoded string to UTF-8
  631. *
  632. * @param string $pValue
  633. * @return string UTF-8 encoded string
  634. */
  635. public static function SYLKtoUTF8($pValue = '')
  636. {
  637. // If there is no escape character in the string there is nothing to do
  638. if (strpos($pValue, '') === false) {
  639. return $pValue;
  640. }
  641. foreach (self::$_SYLKCharacters as $k => $v) {
  642. $pValue = str_replace($k, $v, $pValue);
  643. }
  644. return $pValue;
  645. }
  646. }