Functions.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814
  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (c) 2006 - 2013 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_Calculation
  23. * @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel)
  24. * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
  25. * @version 1.7.9, 2013-06-02
  26. */
  27. /** PHPExcel root directory */
  28. if (!defined('PHPEXCEL_ROOT')) {
  29. /**
  30. * @ignore
  31. */
  32. define('PHPEXCEL_ROOT', dirname(__FILE__) . '/../../');
  33. require(PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php');
  34. }
  35. /** MAX_VALUE */
  36. define('MAX_VALUE', 1.2e308);
  37. /** 2 / PI */
  38. define('M_2DIVPI', 0.63661977236758134307553505349006);
  39. /** MAX_ITERATIONS */
  40. define('MAX_ITERATIONS', 256);
  41. /** PRECISION */
  42. define('PRECISION', 8.88E-016);
  43. /**
  44. * PHPExcel_Calculation_Functions
  45. *
  46. * @category PHPExcel
  47. * @package PHPExcel_Calculation
  48. * @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel)
  49. */
  50. class PHPExcel_Calculation_Functions {
  51. /** constants */
  52. const COMPATIBILITY_EXCEL = 'Excel';
  53. const COMPATIBILITY_GNUMERIC = 'Gnumeric';
  54. const COMPATIBILITY_OPENOFFICE = 'OpenOfficeCalc';
  55. const RETURNDATE_PHP_NUMERIC = 'P';
  56. const RETURNDATE_PHP_OBJECT = 'O';
  57. const RETURNDATE_EXCEL = 'E';
  58. /**
  59. * Compatibility mode to use for error checking and responses
  60. *
  61. * @access private
  62. * @var string
  63. */
  64. protected static $compatibilityMode = self::COMPATIBILITY_EXCEL;
  65. /**
  66. * Data Type to use when returning date values
  67. *
  68. * @access private
  69. * @var string
  70. */
  71. protected static $ReturnDateType = self::RETURNDATE_EXCEL;
  72. /**
  73. * List of error codes
  74. *
  75. * @access private
  76. * @var array
  77. */
  78. protected static $_errorCodes = array( 'null' => '#NULL!',
  79. 'divisionbyzero' => '#DIV/0!',
  80. 'value' => '#VALUE!',
  81. 'reference' => '#REF!',
  82. 'name' => '#NAME?',
  83. 'num' => '#NUM!',
  84. 'na' => '#N/A',
  85. 'gettingdata' => '#GETTING_DATA'
  86. );
  87. /**
  88. * Set the Compatibility Mode
  89. *
  90. * @access public
  91. * @category Function Configuration
  92. * @param string $compatibilityMode Compatibility Mode
  93. * Permitted values are:
  94. * PHPExcel_Calculation_Functions::COMPATIBILITY_EXCEL 'Excel'
  95. * PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC 'Gnumeric'
  96. * PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE 'OpenOfficeCalc'
  97. * @return boolean (Success or Failure)
  98. */
  99. public static function setCompatibilityMode($compatibilityMode) {
  100. if (($compatibilityMode == self::COMPATIBILITY_EXCEL) ||
  101. ($compatibilityMode == self::COMPATIBILITY_GNUMERIC) ||
  102. ($compatibilityMode == self::COMPATIBILITY_OPENOFFICE)) {
  103. self::$compatibilityMode = $compatibilityMode;
  104. return True;
  105. }
  106. return False;
  107. } // function setCompatibilityMode()
  108. /**
  109. * Return the current Compatibility Mode
  110. *
  111. * @access public
  112. * @category Function Configuration
  113. * @return string Compatibility Mode
  114. * Possible Return values are:
  115. * PHPExcel_Calculation_Functions::COMPATIBILITY_EXCEL 'Excel'
  116. * PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC 'Gnumeric'
  117. * PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE 'OpenOfficeCalc'
  118. */
  119. public static function getCompatibilityMode() {
  120. return self::$compatibilityMode;
  121. } // function getCompatibilityMode()
  122. /**
  123. * Set the Return Date Format used by functions that return a date/time (Excel, PHP Serialized Numeric or PHP Object)
  124. *
  125. * @access public
  126. * @category Function Configuration
  127. * @param string $returnDateType Return Date Format
  128. * Permitted values are:
  129. * PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC 'P'
  130. * PHPExcel_Calculation_Functions::RETURNDATE_PHP_OBJECT 'O'
  131. * PHPExcel_Calculation_Functions::RETURNDATE_EXCEL 'E'
  132. * @return boolean Success or failure
  133. */
  134. public static function setReturnDateType($returnDateType) {
  135. if (($returnDateType == self::RETURNDATE_PHP_NUMERIC) ||
  136. ($returnDateType == self::RETURNDATE_PHP_OBJECT) ||
  137. ($returnDateType == self::RETURNDATE_EXCEL)) {
  138. self::$ReturnDateType = $returnDateType;
  139. return True;
  140. }
  141. return False;
  142. } // function setReturnDateType()
  143. /**
  144. * Return the current Return Date Format for functions that return a date/time (Excel, PHP Serialized Numeric or PHP Object)
  145. *
  146. * @access public
  147. * @category Function Configuration
  148. * @return string Return Date Format
  149. * Possible Return values are:
  150. * PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC 'P'
  151. * PHPExcel_Calculation_Functions::RETURNDATE_PHP_OBJECT 'O'
  152. * PHPExcel_Calculation_Functions::RETURNDATE_EXCEL 'E'
  153. */
  154. public static function getReturnDateType() {
  155. return self::$ReturnDateType;
  156. } // function getReturnDateType()
  157. /**
  158. * DUMMY
  159. *
  160. * @access public
  161. * @category Error Returns
  162. * @return string #Not Yet Implemented
  163. */
  164. public static function DUMMY() {
  165. return '#Not Yet Implemented';
  166. } // function DUMMY()
  167. /**
  168. * DIV0
  169. *
  170. * @access public
  171. * @category Error Returns
  172. * @return string #Not Yet Implemented
  173. */
  174. public static function DIV0() {
  175. return self::$_errorCodes['divisionbyzero'];
  176. } // function DIV0()
  177. /**
  178. * NA
  179. *
  180. * Excel Function:
  181. * =NA()
  182. *
  183. * Returns the error value #N/A
  184. * #N/A is the error value that means "no value is available."
  185. *
  186. * @access public
  187. * @category Logical Functions
  188. * @return string #N/A!
  189. */
  190. public static function NA() {
  191. return self::$_errorCodes['na'];
  192. } // function NA()
  193. /**
  194. * NaN
  195. *
  196. * Returns the error value #NUM!
  197. *
  198. * @access public
  199. * @category Error Returns
  200. * @return string #NUM!
  201. */
  202. public static function NaN() {
  203. return self::$_errorCodes['num'];
  204. } // function NaN()
  205. /**
  206. * NAME
  207. *
  208. * Returns the error value #NAME?
  209. *
  210. * @access public
  211. * @category Error Returns
  212. * @return string #NAME?
  213. */
  214. public static function NAME() {
  215. return self::$_errorCodes['name'];
  216. } // function NAME()
  217. /**
  218. * REF
  219. *
  220. * Returns the error value #REF!
  221. *
  222. * @access public
  223. * @category Error Returns
  224. * @return string #REF!
  225. */
  226. public static function REF() {
  227. return self::$_errorCodes['reference'];
  228. } // function REF()
  229. /**
  230. * NULL
  231. *
  232. * Returns the error value #NULL!
  233. *
  234. * @access public
  235. * @category Error Returns
  236. * @return string #REF!
  237. */
  238. public static function NULL() {
  239. return self::$_errorCodes['null'];
  240. } // function NULL()
  241. /**
  242. * VALUE
  243. *
  244. * Returns the error value #VALUE!
  245. *
  246. * @access public
  247. * @category Error Returns
  248. * @return string #VALUE!
  249. */
  250. public static function VALUE() {
  251. return self::$_errorCodes['value'];
  252. } // function VALUE()
  253. public static function isMatrixValue($idx) {
  254. return ((substr_count($idx,'.') <= 1) || (preg_match('/\.[A-Z]/',$idx) > 0));
  255. }
  256. public static function isValue($idx) {
  257. return (substr_count($idx,'.') == 0);
  258. }
  259. public static function isCellValue($idx) {
  260. return (substr_count($idx,'.') > 1);
  261. }
  262. public static function _ifCondition($condition) {
  263. $condition = PHPExcel_Calculation_Functions::flattenSingleValue($condition);
  264. if (!isset($condition{0}))
  265. $condition = '=""';
  266. if (!in_array($condition{0},array('>', '<', '='))) {
  267. if (!is_numeric($condition)) { $condition = PHPExcel_Calculation::_wrapResult(strtoupper($condition)); }
  268. return '='.$condition;
  269. } else {
  270. preg_match('/([<>=]+)(.*)/',$condition,$matches);
  271. list(,$operator,$operand) = $matches;
  272. if (!is_numeric($operand)) { $operand = PHPExcel_Calculation::_wrapResult(strtoupper($operand)); }
  273. return $operator.$operand;
  274. }
  275. } // function _ifCondition()
  276. /**
  277. * ERROR_TYPE
  278. *
  279. * @param mixed $value Value to check
  280. * @return boolean
  281. */
  282. public static function ERROR_TYPE($value = '') {
  283. $value = self::flattenSingleValue($value);
  284. $i = 1;
  285. foreach(self::$_errorCodes as $errorCode) {
  286. if ($value === $errorCode) {
  287. return $i;
  288. }
  289. ++$i;
  290. }
  291. return self::NA();
  292. } // function ERROR_TYPE()
  293. /**
  294. * IS_BLANK
  295. *
  296. * @param mixed $value Value to check
  297. * @return boolean
  298. */
  299. public static function IS_BLANK($value = NULL) {
  300. if (!is_null($value)) {
  301. $value = self::flattenSingleValue($value);
  302. }
  303. return is_null($value);
  304. } // function IS_BLANK()
  305. /**
  306. * IS_ERR
  307. *
  308. * @param mixed $value Value to check
  309. * @return boolean
  310. */
  311. public static function IS_ERR($value = '') {
  312. $value = self::flattenSingleValue($value);
  313. return self::IS_ERROR($value) && (!self::IS_NA($value));
  314. } // function IS_ERR()
  315. /**
  316. * IS_ERROR
  317. *
  318. * @param mixed $value Value to check
  319. * @return boolean
  320. */
  321. public static function IS_ERROR($value = '') {
  322. $value = self::flattenSingleValue($value);
  323. if (!is_string($value))
  324. return false;
  325. return in_array($value, array_values(self::$_errorCodes));
  326. } // function IS_ERROR()
  327. /**
  328. * IS_NA
  329. *
  330. * @param mixed $value Value to check
  331. * @return boolean
  332. */
  333. public static function IS_NA($value = '') {
  334. $value = self::flattenSingleValue($value);
  335. return ($value === self::NA());
  336. } // function IS_NA()
  337. /**
  338. * IS_EVEN
  339. *
  340. * @param mixed $value Value to check
  341. * @return boolean
  342. */
  343. public static function IS_EVEN($value = NULL) {
  344. $value = self::flattenSingleValue($value);
  345. if ($value === NULL)
  346. return self::NAME();
  347. if ((is_bool($value)) || ((is_string($value)) && (!is_numeric($value))))
  348. return self::VALUE();
  349. return ($value % 2 == 0);
  350. } // function IS_EVEN()
  351. /**
  352. * IS_ODD
  353. *
  354. * @param mixed $value Value to check
  355. * @return boolean
  356. */
  357. public static function IS_ODD($value = NULL) {
  358. $value = self::flattenSingleValue($value);
  359. if ($value === NULL)
  360. return self::NAME();
  361. if ((is_bool($value)) || ((is_string($value)) && (!is_numeric($value))))
  362. return self::VALUE();
  363. return (abs($value) % 2 == 1);
  364. } // function IS_ODD()
  365. /**
  366. * IS_NUMBER
  367. *
  368. * @param mixed $value Value to check
  369. * @return boolean
  370. */
  371. public static function IS_NUMBER($value = NULL) {
  372. $value = self::flattenSingleValue($value);
  373. if (is_string($value)) {
  374. return False;
  375. }
  376. return is_numeric($value);
  377. } // function IS_NUMBER()
  378. /**
  379. * IS_LOGICAL
  380. *
  381. * @param mixed $value Value to check
  382. * @return boolean
  383. */
  384. public static function IS_LOGICAL($value = NULL) {
  385. $value = self::flattenSingleValue($value);
  386. return is_bool($value);
  387. } // function IS_LOGICAL()
  388. /**
  389. * IS_TEXT
  390. *
  391. * @param mixed $value Value to check
  392. * @return boolean
  393. */
  394. public static function IS_TEXT($value = NULL) {
  395. $value = self::flattenSingleValue($value);
  396. return (is_string($value) && !self::IS_ERROR($value));
  397. } // function IS_TEXT()
  398. /**
  399. * IS_NONTEXT
  400. *
  401. * @param mixed $value Value to check
  402. * @return boolean
  403. */
  404. public static function IS_NONTEXT($value = NULL) {
  405. return !self::IS_TEXT($value);
  406. } // function IS_NONTEXT()
  407. /**
  408. * VERSION
  409. *
  410. * @return string Version information
  411. */
  412. public static function VERSION() {
  413. return 'PHPExcel 1.7.9, 2013-06-02';
  414. } // function VERSION()
  415. /**
  416. * N
  417. *
  418. * Returns a value converted to a number
  419. *
  420. * @param value The value you want converted
  421. * @return number N converts values listed in the following table
  422. * If value is or refers to N returns
  423. * A number That number
  424. * A date The serial number of that date
  425. * TRUE 1
  426. * FALSE 0
  427. * An error value The error value
  428. * Anything else 0
  429. */
  430. public static function N($value = NULL) {
  431. while (is_array($value)) {
  432. $value = array_shift($value);
  433. }
  434. switch (gettype($value)) {
  435. case 'double' :
  436. case 'float' :
  437. case 'integer' :
  438. return $value;
  439. break;
  440. case 'boolean' :
  441. return (integer) $value;
  442. break;
  443. case 'string' :
  444. // Errors
  445. if ((strlen($value) > 0) && ($value{0} == '#')) {
  446. return $value;
  447. }
  448. break;
  449. }
  450. return 0;
  451. } // function N()
  452. /**
  453. * TYPE
  454. *
  455. * Returns a number that identifies the type of a value
  456. *
  457. * @param value The value you want tested
  458. * @return number N converts values listed in the following table
  459. * If value is or refers to N returns
  460. * A number 1
  461. * Text 2
  462. * Logical Value 4
  463. * An error value 16
  464. * Array or Matrix 64
  465. */
  466. public static function TYPE($value = NULL) {
  467. $value = self::flattenArrayIndexed($value);
  468. if (is_array($value) && (count($value) > 1)) {
  469. $a = array_keys($value);
  470. $a = array_pop($a);
  471. // Range of cells is an error
  472. if (self::isCellValue($a)) {
  473. return 16;
  474. // Test for Matrix
  475. } elseif (self::isMatrixValue($a)) {
  476. return 64;
  477. }
  478. } elseif(empty($value)) {
  479. // Empty Cell
  480. return 1;
  481. }
  482. $value = self::flattenSingleValue($value);
  483. if (($value === NULL) || (is_float($value)) || (is_int($value))) {
  484. return 1;
  485. } elseif(is_bool($value)) {
  486. return 4;
  487. } elseif(is_array($value)) {
  488. return 64;
  489. } elseif(is_string($value)) {
  490. // Errors
  491. if ((strlen($value) > 0) && ($value{0} == '#')) {
  492. return 16;
  493. }
  494. return 2;
  495. }
  496. return 0;
  497. } // function TYPE()
  498. /**
  499. * Convert a multi-dimensional array to a simple 1-dimensional array
  500. *
  501. * @param array $array Array to be flattened
  502. * @return array Flattened array
  503. */
  504. public static function flattenArray($array) {
  505. if (!is_array($array)) {
  506. return (array) $array;
  507. }
  508. $arrayValues = array();
  509. foreach ($array as $value) {
  510. if (is_array($value)) {
  511. foreach ($value as $val) {
  512. if (is_array($val)) {
  513. foreach ($val as $v) {
  514. $arrayValues[] = $v;
  515. }
  516. } else {
  517. $arrayValues[] = $val;
  518. }
  519. }
  520. } else {
  521. $arrayValues[] = $value;
  522. }
  523. }
  524. return $arrayValues;
  525. } // function flattenArray()
  526. /**
  527. * Convert a multi-dimensional array to a simple 1-dimensional array, but retain an element of indexing
  528. *
  529. * @param array $array Array to be flattened
  530. * @return array Flattened array
  531. */
  532. public static function flattenArrayIndexed($array) {
  533. if (!is_array($array)) {
  534. return (array) $array;
  535. }
  536. $arrayValues = array();
  537. foreach ($array as $k1 => $value) {
  538. if (is_array($value)) {
  539. foreach ($value as $k2 => $val) {
  540. if (is_array($val)) {
  541. foreach ($val as $k3 => $v) {
  542. $arrayValues[$k1.'.'.$k2.'.'.$k3] = $v;
  543. }
  544. } else {
  545. $arrayValues[$k1.'.'.$k2] = $val;
  546. }
  547. }
  548. } else {
  549. $arrayValues[$k1] = $value;
  550. }
  551. }
  552. return $arrayValues;
  553. } // function flattenArrayIndexed()
  554. /**
  555. * Convert an array to a single scalar value by extracting the first element
  556. *
  557. * @param mixed $value Array or scalar value
  558. * @return mixed
  559. */
  560. public static function flattenSingleValue($value = '') {
  561. while (is_array($value)) {
  562. $value = array_pop($value);
  563. }
  564. return $value;
  565. } // function flattenSingleValue()
  566. } // class PHPExcel_Calculation_Functions
  567. //
  568. // There are a few mathematical functions that aren't available on all versions of PHP for all platforms
  569. // These functions aren't available in Windows implementations of PHP prior to version 5.3.0
  570. // So we test if they do exist for this version of PHP/operating platform; and if not we create them
  571. //
  572. if (!function_exists('acosh')) {
  573. function acosh($x) {
  574. return 2 * log(sqrt(($x + 1) / 2) + sqrt(($x - 1) / 2));
  575. } // function acosh()
  576. }
  577. if (!function_exists('asinh')) {
  578. function asinh($x) {
  579. return log($x + sqrt(1 + $x * $x));
  580. } // function asinh()
  581. }
  582. if (!function_exists('atanh')) {
  583. function atanh($x) {
  584. return (log(1 + $x) - log(1 - $x)) / 2;
  585. } // function atanh()
  586. }
  587. if (!function_exists('money_format')) {
  588. function money_format($format, $number) {
  589. $regex = array( '/%((?:[\^!\-]|\+|\(|\=.)*)([0-9]+)?(?:#([0-9]+))?',
  590. '(?:\.([0-9]+))?([in%])/'
  591. );
  592. $regex = implode('', $regex);
  593. if (setlocale(LC_MONETARY, null) == '') {
  594. setlocale(LC_MONETARY, '');
  595. }
  596. $locale = localeconv();
  597. $number = floatval($number);
  598. if (!preg_match($regex, $format, $fmatch)) {
  599. trigger_error("No format specified or invalid format", E_USER_WARNING);
  600. return $number;
  601. }
  602. $flags = array( 'fillchar' => preg_match('/\=(.)/', $fmatch[1], $match) ? $match[1] : ' ',
  603. 'nogroup' => preg_match('/\^/', $fmatch[1]) > 0,
  604. 'usesignal' => preg_match('/\+|\(/', $fmatch[1], $match) ? $match[0] : '+',
  605. 'nosimbol' => preg_match('/\!/', $fmatch[1]) > 0,
  606. 'isleft' => preg_match('/\-/', $fmatch[1]) > 0
  607. );
  608. $width = trim($fmatch[2]) ? (int)$fmatch[2] : 0;
  609. $left = trim($fmatch[3]) ? (int)$fmatch[3] : 0;
  610. $right = trim($fmatch[4]) ? (int)$fmatch[4] : $locale['int_frac_digits'];
  611. $conversion = $fmatch[5];
  612. $positive = true;
  613. if ($number < 0) {
  614. $positive = false;
  615. $number *= -1;
  616. }
  617. $letter = $positive ? 'p' : 'n';
  618. $prefix = $suffix = $cprefix = $csuffix = $signal = '';
  619. if (!$positive) {
  620. $signal = $locale['negative_sign'];
  621. switch (true) {
  622. case $locale['n_sign_posn'] == 0 || $flags['usesignal'] == '(':
  623. $prefix = '(';
  624. $suffix = ')';
  625. break;
  626. case $locale['n_sign_posn'] == 1:
  627. $prefix = $signal;
  628. break;
  629. case $locale['n_sign_posn'] == 2:
  630. $suffix = $signal;
  631. break;
  632. case $locale['n_sign_posn'] == 3:
  633. $cprefix = $signal;
  634. break;
  635. case $locale['n_sign_posn'] == 4:
  636. $csuffix = $signal;
  637. break;
  638. }
  639. }
  640. if (!$flags['nosimbol']) {
  641. $currency = $cprefix;
  642. $currency .= ($conversion == 'i' ? $locale['int_curr_symbol'] : $locale['currency_symbol']);
  643. $currency .= $csuffix;
  644. $currency = iconv('ISO-8859-1','UTF-8',$currency);
  645. } else {
  646. $currency = '';
  647. }
  648. $space = $locale["{$letter}_sep_by_space"] ? ' ' : '';
  649. if (!isset($locale['mon_decimal_point']) || empty($locale['mon_decimal_point'])) {
  650. $locale['mon_decimal_point'] = (!isset($locale['decimal_point']) || empty($locale['decimal_point'])) ?
  651. $locale['decimal_point'] :
  652. '.';
  653. }
  654. $number = number_format($number, $right, $locale['mon_decimal_point'], $flags['nogroup'] ? '' : $locale['mon_thousands_sep'] );
  655. $number = explode($locale['mon_decimal_point'], $number);
  656. $n = strlen($prefix) + strlen($currency);
  657. if ($left > 0 && $left > $n) {
  658. if ($flags['isleft']) {
  659. $number[0] .= str_repeat($flags['fillchar'], $left - $n);
  660. } else {
  661. $number[0] = str_repeat($flags['fillchar'], $left - $n) . $number[0];
  662. }
  663. }
  664. $number = implode($locale['mon_decimal_point'], $number);
  665. if ($locale["{$letter}_cs_precedes"]) {
  666. $number = $prefix . $currency . $space . $number . $suffix;
  667. } else {
  668. $number = $prefix . $number . $space . $currency . $suffix;
  669. }
  670. if ($width > 0) {
  671. $number = str_pad($number, $width, $flags['fillchar'], $flags['isleft'] ? STR_PAD_RIGHT : STR_PAD_LEFT);
  672. }
  673. $format = str_replace($fmatch[0], $number, $format);
  674. return $format;
  675. } // function money_format()
  676. }
  677. //
  678. // Strangely, PHP doesn't have a mb_str_replace multibyte function
  679. // As we'll only ever use this function with UTF-8 characters, we can simply "hard-code" the character set
  680. //
  681. if ((!function_exists('mb_str_replace')) &&
  682. (function_exists('mb_substr')) && (function_exists('mb_strlen')) && (function_exists('mb_strpos'))) {
  683. function mb_str_replace($search, $replace, $subject) {
  684. if(is_array($subject)) {
  685. $ret = array();
  686. foreach($subject as $key => $val) {
  687. $ret[$key] = mb_str_replace($search, $replace, $val);
  688. }
  689. return $ret;
  690. }
  691. foreach((array) $search as $key => $s) {
  692. if($s == '') {
  693. continue;
  694. }
  695. $r = !is_array($replace) ? $replace : (array_key_exists($key, $replace) ? $replace[$key] : '');
  696. $pos = mb_strpos($subject, $s, 0, 'UTF-8');
  697. while($pos !== false) {
  698. $subject = mb_substr($subject, 0, $pos, 'UTF-8') . $r . mb_substr($subject, $pos + mb_strlen($s, 'UTF-8'), 65535, 'UTF-8');
  699. $pos = mb_strpos($subject, $s, $pos + mb_strlen($r, 'UTF-8'), 'UTF-8');
  700. }
  701. }
  702. return $subject;
  703. }
  704. }