2012-02-07 01:03:21 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* CakeNumber Utility.
|
|
|
|
*
|
|
|
|
* Methods to make numbers more readable.
|
|
|
|
*
|
|
|
|
* PHP 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2012-03-13 02:46:07 +00:00
|
|
|
* Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2012-02-07 01:03:21 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2012-03-13 02:46:07 +00:00
|
|
|
* @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2012-02-07 01:03:21 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
|
|
|
* @package Cake.Utility
|
|
|
|
* @since CakePHP(tm) v 0.10.0.1076
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Number helper library.
|
|
|
|
*
|
|
|
|
* Methods to make numbers more readable.
|
|
|
|
*
|
|
|
|
* @package Cake.Utility
|
|
|
|
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html
|
|
|
|
*/
|
|
|
|
class CakeNumber {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Currencies supported by the helper. You can add additional currency formats
|
|
|
|
* with CakeNumber::addFormat
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2012-02-05 22:56:56 +00:00
|
|
|
protected static $_currencies = array(
|
2012-02-07 01:03:21 +00:00
|
|
|
'USD' => array(
|
|
|
|
'wholeSymbol' => '$', 'wholePosition' => 'before', 'fractionSymbol' => 'c', 'fractionPosition' => 'after',
|
|
|
|
'zero' => 0, 'places' => 2, 'thousands' => ',', 'decimals' => '.', 'negative' => '()', 'escape' => true
|
|
|
|
),
|
|
|
|
'GBP' => array(
|
|
|
|
'wholeSymbol' => '£', 'wholePosition' => 'before', 'fractionSymbol' => 'p', 'fractionPosition' => 'after',
|
|
|
|
'zero' => 0, 'places' => 2, 'thousands' => ',', 'decimals' => '.', 'negative' => '()','escape' => false
|
|
|
|
),
|
|
|
|
'EUR' => array(
|
|
|
|
'wholeSymbol' => '€', 'wholePosition' => 'before', 'fractionSymbol' => false, 'fractionPosition' => 'after',
|
|
|
|
'zero' => 0, 'places' => 2, 'thousands' => '.', 'decimals' => ',', 'negative' => '()', 'escape' => false
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Default options for currency formats
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2012-02-05 22:56:56 +00:00
|
|
|
protected static $_currencyDefaults = array(
|
2012-02-07 01:03:21 +00:00
|
|
|
'wholeSymbol' => '', 'wholePosition' => 'before', 'fractionSymbol' => '', 'fractionPosition' => 'after',
|
|
|
|
'zero' => '0', 'places' => 2, 'thousands' => ',', 'decimals' => '.','negative' => '()', 'escape' => true,
|
|
|
|
);
|
|
|
|
|
2012-03-28 06:43:55 +00:00
|
|
|
/**
|
|
|
|
* If native number_format() should be used. If >= PHP5.4
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
protected static $_numberFormatSupport = null;
|
|
|
|
|
2012-02-07 01:03:21 +00:00
|
|
|
/**
|
|
|
|
* Formats a number with a level of precision.
|
|
|
|
*
|
2012-06-19 03:13:05 +00:00
|
|
|
* @param float $number A floating point number.
|
2012-02-07 01:03:21 +00:00
|
|
|
* @param integer $precision The precision of the returned number.
|
|
|
|
* @return float Formatted float.
|
|
|
|
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html#NumberHelper::precision
|
|
|
|
*/
|
2012-02-13 02:13:39 +00:00
|
|
|
public static function precision($number, $precision = 3) {
|
2012-06-19 03:13:05 +00:00
|
|
|
return sprintf("%01.{$precision}F", $number);
|
2012-02-07 01:03:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a formatted-for-humans file size.
|
|
|
|
*
|
|
|
|
* @param integer $size Size in bytes
|
|
|
|
* @return string Human readable size
|
|
|
|
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html#NumberHelper::toReadableSize
|
|
|
|
*/
|
2012-02-13 02:13:39 +00:00
|
|
|
public static function toReadableSize($size) {
|
2012-02-07 01:03:21 +00:00
|
|
|
switch (true) {
|
|
|
|
case $size < 1024:
|
|
|
|
return __dn('cake', '%d Byte', '%d Bytes', $size, $size);
|
|
|
|
case round($size / 1024) < 1024:
|
2012-02-13 02:13:39 +00:00
|
|
|
return __d('cake', '%d KB', self::precision($size / 1024, 0));
|
2012-02-07 01:03:21 +00:00
|
|
|
case round($size / 1024 / 1024, 2) < 1024:
|
2012-02-13 02:13:39 +00:00
|
|
|
return __d('cake', '%.2f MB', self::precision($size / 1024 / 1024, 2));
|
2012-02-07 01:03:21 +00:00
|
|
|
case round($size / 1024 / 1024 / 1024, 2) < 1024:
|
2012-02-13 02:13:39 +00:00
|
|
|
return __d('cake', '%.2f GB', self::precision($size / 1024 / 1024 / 1024, 2));
|
2012-02-07 01:03:21 +00:00
|
|
|
default:
|
2012-02-13 02:13:39 +00:00
|
|
|
return __d('cake', '%.2f TB', self::precision($size / 1024 / 1024 / 1024 / 1024, 2));
|
2012-02-07 01:03:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Formats a number into a percentage string.
|
|
|
|
*
|
|
|
|
* @param float $number A floating point number
|
|
|
|
* @param integer $precision The precision of the returned number
|
|
|
|
* @return string Percentage string
|
|
|
|
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html#NumberHelper::toPercentage
|
|
|
|
*/
|
2012-02-13 02:13:39 +00:00
|
|
|
public static function toPercentage($number, $precision = 2) {
|
|
|
|
return self::precision($number, $precision) . '%';
|
2012-02-07 01:03:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Formats a number into a currency format.
|
|
|
|
*
|
|
|
|
* @param float $number A floating point number
|
|
|
|
* @param integer $options if int then places, if string then before, if (,.-) then use it
|
|
|
|
* or array with places and before keys
|
|
|
|
* @return string formatted number
|
|
|
|
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html#NumberHelper::format
|
|
|
|
*/
|
2012-02-13 02:13:39 +00:00
|
|
|
public static function format($number, $options = false) {
|
2012-02-07 01:03:21 +00:00
|
|
|
$places = 0;
|
|
|
|
if (is_int($options)) {
|
|
|
|
$places = $options;
|
|
|
|
}
|
|
|
|
|
|
|
|
$separators = array(',', '.', '-', ':');
|
|
|
|
|
|
|
|
$before = $after = null;
|
|
|
|
if (is_string($options) && !in_array($options, $separators)) {
|
|
|
|
$before = $options;
|
|
|
|
}
|
|
|
|
$thousands = ',';
|
|
|
|
if (!is_array($options) && in_array($options, $separators)) {
|
|
|
|
$thousands = $options;
|
|
|
|
}
|
|
|
|
$decimals = '.';
|
|
|
|
if (!is_array($options) && in_array($options, $separators)) {
|
|
|
|
$decimals = $options;
|
|
|
|
}
|
|
|
|
|
|
|
|
$escape = true;
|
|
|
|
if (is_array($options)) {
|
|
|
|
$options = array_merge(array('before' => '$', 'places' => 2, 'thousands' => ',', 'decimals' => '.'), $options);
|
|
|
|
extract($options);
|
|
|
|
}
|
|
|
|
|
2012-04-01 01:38:39 +00:00
|
|
|
$out = $before . self::_numberFormat($number, $places, $decimals, $thousands) . $after;
|
2012-02-07 01:03:21 +00:00
|
|
|
|
|
|
|
if ($escape) {
|
|
|
|
return h($out);
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
2012-03-28 06:43:55 +00:00
|
|
|
/**
|
|
|
|
* Alternative number_format() to accommodate multibyte decimals and thousands < PHP 5.4
|
|
|
|
*
|
|
|
|
* @param float $number
|
|
|
|
* @param integer $places
|
|
|
|
* @param string $decimals
|
|
|
|
* @param string $thousands
|
|
|
|
* @return string
|
|
|
|
*/
|
2012-04-01 01:38:39 +00:00
|
|
|
protected static function _numberFormat($number, $places = 0, $decimals = '.', $thousands = ',') {
|
2012-03-28 06:43:55 +00:00
|
|
|
if (!isset(self::$_numberFormatSupport)) {
|
|
|
|
self::$_numberFormatSupport = version_compare(PHP_VERSION, '5.4.0', '>=');
|
|
|
|
}
|
|
|
|
if (self::$_numberFormatSupport) {
|
|
|
|
return number_format($number, $places, $decimals, $thousands);
|
|
|
|
}
|
|
|
|
$number = number_format($number, $places, '.', '');
|
|
|
|
$after = '';
|
|
|
|
$foundDecimal = strpos($number, '.');
|
|
|
|
if ($foundDecimal !== false) {
|
|
|
|
$after = substr($number, $foundDecimal);
|
|
|
|
$number = substr($number, 0, $foundDecimal);
|
|
|
|
}
|
|
|
|
while (($foundThousand = preg_replace('/(\d+)(\d\d\d)/', '\1 \2', $number)) != $number) {
|
|
|
|
$number = $foundThousand;
|
|
|
|
}
|
|
|
|
$number .= $after;
|
|
|
|
return strtr($number, array(' ' => $thousands, '.' => $decimals));
|
|
|
|
}
|
|
|
|
|
2012-02-07 01:03:21 +00:00
|
|
|
/**
|
|
|
|
* Formats a number into a currency format.
|
|
|
|
*
|
|
|
|
* ### Options
|
|
|
|
*
|
2012-04-08 16:34:28 +00:00
|
|
|
* - `wholeSymbol` - The currency symbol to use for whole numbers,
|
|
|
|
* greater than 1, or less than -1.
|
|
|
|
* - `wholePosition` - The position the whole symbol should be placed
|
|
|
|
* valid options are 'before' & 'after'.
|
|
|
|
* - `fractionSymbol` - The currency symbol to use for fractional numbers.
|
|
|
|
* - `fractionPosition` - The position the fraction symbol should be placed
|
|
|
|
* valid options are 'before' & 'after'.
|
|
|
|
* - `before` - The currency symbol to place before whole numbers
|
|
|
|
* ie. '$'. `before` is an alias for `wholeSymbol`.
|
|
|
|
* - `after` - The currency symbol to place after decimal numbers
|
|
|
|
* ie. 'c'. Set to boolean false to use no decimal symbol.
|
|
|
|
* eg. 0.35 => $0.35. `after` is an alias for `fractionSymbol`
|
|
|
|
* - `zero` - The text to use for zero values, can be a
|
|
|
|
* string or a number. ie. 0, 'Free!'
|
2012-02-07 01:03:21 +00:00
|
|
|
* - `places` - Number of decimal places to use. ie. 2
|
|
|
|
* - `thousands` - Thousands separator ie. ','
|
|
|
|
* - `decimals` - Decimal separator symbol ie. '.'
|
2012-04-08 16:34:28 +00:00
|
|
|
* - `negative` - Symbol for negative numbers. If equal to '()',
|
|
|
|
* the number will be wrapped with ( and )
|
2012-02-07 01:03:21 +00:00
|
|
|
* - `escape` - Should the output be htmlentity escaped? Defaults to true
|
|
|
|
*
|
|
|
|
* @param float $number
|
2012-04-08 16:34:28 +00:00
|
|
|
* @param string $currency Shortcut to default options. Valid values are
|
|
|
|
* 'USD', 'EUR', 'GBP', otherwise set at least 'before' and 'after' options.
|
2012-02-07 01:03:21 +00:00
|
|
|
* @param array $options
|
|
|
|
* @return string Number formatted as a currency.
|
|
|
|
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html#NumberHelper::currency
|
|
|
|
*/
|
2012-02-13 02:13:39 +00:00
|
|
|
public static function currency($number, $currency = 'USD', $options = array()) {
|
2012-02-05 22:56:56 +00:00
|
|
|
$default = self::$_currencyDefaults;
|
2012-02-07 01:03:21 +00:00
|
|
|
|
2012-02-05 22:56:56 +00:00
|
|
|
if (isset(self::$_currencies[$currency])) {
|
|
|
|
$default = self::$_currencies[$currency];
|
2012-02-07 01:03:21 +00:00
|
|
|
} elseif (is_string($currency)) {
|
|
|
|
$options['before'] = $currency;
|
|
|
|
}
|
|
|
|
|
|
|
|
$options = array_merge($default, $options);
|
|
|
|
|
|
|
|
if (isset($options['before']) && $options['before'] !== '') {
|
|
|
|
$options['wholeSymbol'] = $options['before'];
|
|
|
|
}
|
|
|
|
if (isset($options['after']) && !$options['after'] !== '') {
|
|
|
|
$options['fractionSymbol'] = $options['after'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = $options['before'] = $options['after'] = null;
|
|
|
|
|
|
|
|
$symbolKey = 'whole';
|
|
|
|
if ($number == 0 ) {
|
|
|
|
if ($options['zero'] !== 0 ) {
|
|
|
|
return $options['zero'];
|
|
|
|
}
|
|
|
|
} elseif ($number < 1 && $number > -1 ) {
|
|
|
|
if ($options['fractionSymbol'] !== false) {
|
|
|
|
$multiply = intval('1' . str_pad('', $options['places'], '0'));
|
|
|
|
$number = $number * $multiply;
|
|
|
|
$options['places'] = null;
|
|
|
|
$symbolKey = 'fraction';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-03 22:31:47 +00:00
|
|
|
$position = $options[$symbolKey . 'Position'] != 'after' ? 'before' : 'after';
|
|
|
|
$options[$position] = $options[$symbolKey . 'Symbol'];
|
2012-02-07 01:03:21 +00:00
|
|
|
|
|
|
|
$abs = abs($number);
|
2012-02-13 02:13:39 +00:00
|
|
|
$result = self::format($abs, $options);
|
2012-02-07 01:03:21 +00:00
|
|
|
|
|
|
|
if ($number < 0 ) {
|
|
|
|
if ($options['negative'] == '()') {
|
2012-03-03 22:31:47 +00:00
|
|
|
$result = '(' . $result . ')';
|
2012-02-07 01:03:21 +00:00
|
|
|
} else {
|
|
|
|
$result = $options['negative'] . $result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a currency format to the Number helper. Makes reusing
|
|
|
|
* currency formats easier.
|
|
|
|
*
|
|
|
|
* {{{ $number->addFormat('NOK', array('before' => 'Kr. ')); }}}
|
|
|
|
*
|
|
|
|
* You can now use `NOK` as a shortform when formatting currency amounts.
|
|
|
|
*
|
|
|
|
* {{{ $number->currency($value, 'NOK'); }}}
|
|
|
|
*
|
2012-04-08 16:34:28 +00:00
|
|
|
* Added formats are merged with the defaults defined in CakeNumber::$_currencyDefaults
|
|
|
|
* See CakeNumber::currency() for more information on the various options and their function.
|
2012-02-07 01:03:21 +00:00
|
|
|
*
|
|
|
|
* @param string $formatName The format name to be used in the future.
|
|
|
|
* @param array $options The array of options for this format.
|
|
|
|
* @return void
|
|
|
|
* @see NumberHelper::currency()
|
|
|
|
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html#NumberHelper::addFormat
|
|
|
|
*/
|
2012-02-13 02:13:39 +00:00
|
|
|
public static function addFormat($formatName, $options) {
|
2012-02-05 22:56:56 +00:00
|
|
|
self::$_currencies[$formatName] = $options + self::$_currencyDefaults;
|
2012-02-07 01:03:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|