multeg777/calculator-package

此包的最新版本(v1.0.2)没有可用的许可证信息。

v1.0.2 2023-05-22 07:57 UTC

This package is not auto-updated.

Last update: 2024-09-23 14:53:54 UTC


README

执行数学运算

要求

  • PHP 7.4

安装

$ composer require multeg777/calculator-package

使用

加法

<?php
$calculator = new Calculator();
echo $calculator->add(5, -3); // 2

乘法

<?php
$calculator = new Calculator();
echo $calculator->multi(5, 6); // 30