Math calculation, number representation package
186
0
3
Package Data
Maintainer Username: nouni.elbachir
Maintainer Contact: nouni.elbachir@gmail.com (El bachir NOUNI)
Package Create Date: 2016-07-21
Package Last Update: 2017-01-23
Language: PHP
License: MIT
Last Refreshed: 2024-04-25 15:17:06
Package Statistics
Total Downloads: 186
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

#Financial number manipulation in PHP The aim of this package is to facilitate the manipulation and calculs on float numbers without errors.

##Class Number This is an abstract class for all math numbers. This class preserve the original value from what the number is created. Numbers can be compared : lt, le, ge, ge, equals to other numbers (implementing Number class) or PHP Scalar numbers.

##Class IntegerNumber Represents an integer number. You can create new integers from strings, float and pure integer values. NB: conversion from float to integer is used with round :

  • 1.2 ==> 1
  • 1.5 ==> 1
  • 1.6 ==> 2

####Examples

$ints[] = new Enimiste\Math\VO\IntegerNumber(1);

$ints[] = new Enimiste\Math\VO\IntegerNumber(1.0);

$ints[] = new Enimiste\Math\VO\IntegerNumber('1');

$ints[] = new Enimiste\Math\VO\IntegerNumber(1.39);

$ints[] = new Enimiste\Math\VO\IntegerNumber(1.7);

$ints[] = new Enimiste\Math\VO\IntegerNumber(-3);

The code below :

foreach($ints as $x) { 
    echo $x->getValue(); 
    echo $x->getOrigin(); 
    echo $x->__toString(); 
}

will output the results :

  • 1 | 1 | "1"
  • 1 | 1.0 | "1"
  • 1 | "1" | "1"
  • 1 | 1.39 | "1"
  • 2 | 1.7 | "2"
  • -3 | -3 | "-3"