mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 19:38:26 +00:00
8e213b8124
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5570 3807eeeb-6ff5-0310-8944-8be069107fe0
177 lines
No EOL
4.6 KiB
PHP
177 lines
No EOL
4.6 KiB
PHP
<?php
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
* Number Helper.
|
|
*
|
|
* Methods to make numbers more readable.
|
|
*
|
|
* PHP versions 4 and 5
|
|
*
|
|
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
|
* Copyright 2005-2007, Cake Software Foundation, Inc.
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
* Las Vegas, Nevada 89104
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @filesource
|
|
* @copyright Copyright 2005-2007, Cake Software Foundation, Inc.
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
|
* @package cake
|
|
* @subpackage cake.cake.libs.view.helpers
|
|
* @since CakePHP(tm) v 0.10.0.1076
|
|
* @version $Revision$
|
|
* @modifiedby $LastChangedBy$
|
|
* @lastmodified $Date$
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
*/
|
|
|
|
/**
|
|
* Number helper library.
|
|
*
|
|
* Methods to make numbers more readable.
|
|
*
|
|
* @package cake
|
|
* @subpackage cake.cake.libs.view.helpers
|
|
*/
|
|
class NumberHelper extends AppHelper {
|
|
/**
|
|
* Formats a number with a level of precision.
|
|
*
|
|
* @param float $number A floating point number.
|
|
* @param integer $precision The precision of the returned number.
|
|
* @return float Enter description here...
|
|
* @static
|
|
*/
|
|
function precision($number, $precision = 3) {
|
|
return sprintf("%01.{$precision}f", $number);
|
|
}
|
|
|
|
/**
|
|
* Returns a formatted-for-humans file size.
|
|
*
|
|
* @param integer $length Size in bytes
|
|
* @return string Human readable size
|
|
* @static
|
|
*/
|
|
function toReadableSize($size) {
|
|
switch($size) {
|
|
case 0:
|
|
return '0 Bytes';
|
|
case 1:
|
|
return '1 Byte';
|
|
case $size < 1024:
|
|
return $size . ' Bytes';
|
|
case $size < 1024 * 1024:
|
|
return $this->precision($size / 1024, 0) . ' KB';
|
|
case $size < 1024 * 1024 * 1024:
|
|
return $this->precision($size / 1024 / 1024, 2) . ' MB';
|
|
case $size < 1024 * 1024 * 1024 * 1024:
|
|
return $this->precision($size / 1024 / 1024 / 1024, 2) . ' GB';
|
|
case $size < 1024 * 1024 * 1024 * 1024 * 1024:
|
|
return $this->precision($size / 1024 / 1024 / 1024 / 1024, 2) . ' TB';
|
|
}
|
|
}
|
|
/**
|
|
* 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
|
|
* @static
|
|
*/
|
|
function toPercentage($number, $precision = 2) {
|
|
return $this->precision($number, $precision) . '%';
|
|
}
|
|
/**
|
|
* Formats a number into a currnecy 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
|
|
* @static
|
|
*/
|
|
function format($number, $options = false) {
|
|
$places = 0;
|
|
if (is_int($options)) {
|
|
$places = $options;
|
|
}
|
|
|
|
$separators = array(',', '.', '-', ':');
|
|
|
|
$before = null;
|
|
if (is_string($options) && !in_array($options, $separators)) {
|
|
$before = $options;
|
|
}
|
|
$separator = ',';
|
|
if (!is_array($options) && in_array($options, $separators)) {
|
|
$separator = $options;
|
|
}
|
|
$decimals = '.';
|
|
if (!is_array($options) && in_array($options, $separators)) {
|
|
$decimals = $options;
|
|
}
|
|
$escape = true;
|
|
if (is_array($options) && isset($options['escape'])) {
|
|
$escape = $options['escape'];
|
|
}
|
|
|
|
if (is_array($options)) {
|
|
if (isset($options['places'])) {
|
|
$places = $options['places'];
|
|
unset($options['places']);
|
|
}
|
|
|
|
if (isset($options['before'])) {
|
|
$before = $options['before'];
|
|
unset($options['before']);
|
|
}
|
|
|
|
if (isset($options['decimals'])) {
|
|
$decimals = $options['decimals'];
|
|
unset($options['decimals']);
|
|
}
|
|
|
|
if (isset($options['separator'])) {
|
|
$separator = $options['separator'];
|
|
unset($options['separator']);
|
|
}
|
|
}
|
|
|
|
if ($escape) {
|
|
$before = h($before);
|
|
}
|
|
|
|
return $before . number_format ($number, $places, $decimals, $separator);
|
|
}
|
|
/**
|
|
* Formats a number into a currency format.
|
|
*
|
|
* @param float $number A floating point number
|
|
* @param integer $precision The precision of the returned number
|
|
* @return string Percentage string
|
|
* @static
|
|
*/
|
|
function currency ($number, $currency = 'USD') {
|
|
|
|
switch ($currency) {
|
|
case "EUR":
|
|
return $this->format($number, array('escape' => false, 'places'=>'2', 'before'=>'€', 'separator'=>'.', 'decimals'=>','));
|
|
break;
|
|
case "GBP":
|
|
return $this->format($number, array('escape' => false, 'places'=>'2', 'before'=>'£'));
|
|
break;
|
|
case 'USD':
|
|
return $this->format($number, array('places'=>'2', 'before'=>'$'));
|
|
break;
|
|
default:
|
|
return $this->format($number, array('places'=>'2', 'before'=> $currency));
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
?>
|