2017 © Pedro Peláez
 

library hmmmath

Collection of math related PHP functions

image

lstrojny/hmmmath

Collection of math related PHP functions

  • Tuesday, June 26, 2018
  • by lstrojny
  • Repository
  • 2 Watchers
  • 10 Stars
  • 258,793 Installations
  • PHP
  • 5 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 9 Versions
  • 9 % Grown

The README.md

hmmmath

Test, (*1)

Delicious math component for PHP, (*2)

Fibonacci number sequences

<?php
use hmmmath\Fibonacci\FibonacciFactory;

foreach (FibonacciFactory::sequence(0, 1) as $number) {
    var_dump($number);
}

Will output:, (*3)

int(0)
int(1)
int(1)
int(2)
int(3)
int(5)
int(8)
int(13)
int(21)
int(34)
int(55)
int(89)
int(144)
...

The Versions

26/06 2018

dev-master

9999999-dev

Collection of math related PHP functions

  Sources   Download

MIT

The Requires

  • php ~7.1

 

The Development Requires

14/08 2017

0.7.0

0.7.0.0

Collection of math related PHP functions

  Sources   Download

MIT

The Requires

  • php ~7.1

 

The Development Requires

19/02 2017

0.6.0

0.6.0.0

Collection of math related PHP functions

  Sources   Download

MIT

The Requires

  • php ~7

 

The Development Requires

12/02 2016
25/03 2014
19/01 2014
04/10 2013

dev-feature/percentile

dev-feature/percentile

Collection of math related PHP functions

  Sources   Download

MIT

The Development Requires

04/10 2013
24/06 2013