lstrojny/hmmmath
最新稳定版本:0.8.0
Composer 安装命令:
composer require lstrojny/hmmmath
包简介
Collection of math related PHP functions
README 文档
README
Delicious math component for PHP
Fibonacci number sequences
<?php use hmmmath\Fibonacci\FibonacciFactory; foreach (FibonacciFactory::sequence(0, 1) as $number) { var_dump($number); }
Will output:
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)
...
统计信息
- 总下载量: 2.01M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 16
- 点击次数: 2
- 依赖项目数: 7
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-04